Settings trouble

I have a Java Game programming book, JMonkey Engine 3.0 and I’m following along and it says that I need to make an AppSettings object and set the boolean constructor to true but it does not give an example of that code. Can anyone help me with this?

You may have an easier time if you get a starter template from https://start.jmonkeyengine.org/ and then go from there

1 Like

Also, I just went to the “Documention” tab above then “Engine Wiki”… then searched for AppSettings… this is one of the first examples I found:

1 Like

Like this:

        Main app = new Main();
        AppSettings settings1 = new AppSettings(true);
        app.setSettings(settings1);
1 Like

Thanks I ended up fixing it myself by looking in the wiki, but thanks for your help.

3 Likes