Customizing start screen

Is there a way to customize this area?



http://i.imgur.com/Z3Um9.jpg



Basically, I just want to remove all the select fields, and leave the buttons.

No, if you want to configure it yourself make a window yourself.

1 Like

Oh, so I would use swing to make a window? If I did that, then what would be the method I would call to start the game so that window doesn’t show? Or is there a param I can pass to start() that will do that?

[java]app.setShowSettings(false);

[/java]

note however that the resolution you set really has to be supported by the computer:

[java]

GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();

DisplayMode[] modes = device.getDisplayModes();

[/java]

2 Likes

whoa! Gangsta :slight_smile:



Thanks!