Edit startup screen in JMonkey Engine

I want to change the default JMonkey project home screen to replace the image that shows JMonkey with a custom image (our project logo). I mean the screen that appears when a project is executed SimpleApplication. I run the JMonkey SDK on a Linux machine (Linux Mint 13, if that matters) and with OpenJDK 7.

+5
source share
1 answer

You must change the application settings in the main method before app.start. To do this, first import com.jme3.system.AppSettings;, then create a new object AppSettingswith the parameter true or false, after which you can specify the location of the new image with yourAppSettingsObject.setSettingsDialogImage(path/to/image).

, app.setSettings(yourAppSettingsObject);.

+2

All Articles