Start application without jMonkey splash menu with pre-defined options

Example: 1280x720 AA x8, 32b right after start

1 Like

[java] public static void main(String[] args) {

// TODO code application logic here

MyGame test = new MyGame();

test.setShowSettings(false);

AppSettings settings = new AppSettings(true);

settings.setResolution(1280, 720);

settings.setBitsPerPixel(32);

test.setSettings(settings);

test.start();

}

}[/java]

2 Likes