Changeing JMonkey Logo

How do i change the logo of the standard app Settings-Dialog?

Added this feature yesterday, so check last svn and do this :



MySimpleApplication app = new MySimpleApplication ();

AppSettings settings = new AppSettings(true);

//Image must be in class path or in the Project Assets folder

settings.setSettingsDialogImage("/Path/to/texture.png");

app.setSettings(settings);

thank you :), after the library update the app showed changes in the behavior.



Which libraries are used in the AppDialog to get the supported screen resulotion etc…?

Its also the AppSettings, browse the methods…

Java/AWT has a GraphicsEnvironment class that exposes a GraphicsDevice. It allows you to retrieve a list of supported display modes.

thank you.