June 2013
Beginner
352 pages
9h 5m
English
Obviously, you must specify the display options for your game, before starting the application. Here is a simple example: the default window title is jMonkey Engine 3.0; let's change this display setting to the name of your game:
Main.java and name the class SettingsTest.java. Remember to also refactor the first line of the main() method to SettingsTest app = new SettingsTest();.main() method of SettingsTest and add a new AppSettings object:public static void main(String[] args) {
AppSettings settings = new AppSettings(true); // createsettings.setTitle("My Cool Game"); // modifyRead now
Unlock full access