3D assets made in Blender don't always appear as expected in jMonkeyEngine games.
This tool is to help smooth work between 3D designers and developers, by providing 3D designers a simple GUI to quickly test assets in a jMonkeyEngine scene and change their settings at runtime.
- From the zip file:
- On Windows:
- Decompress and simply run the bat file
viewer.bat
viewer_skip_jme.bat
will skip the jMonkeyEngine default settings screen, and the app will load with the last settings you selected (only resolution is saved to the preferences file so far, but other settings should follow)- The ZIP file contains both the app JAR and a JRE for Java 8.
- On the Windows 10 warning message, click "More Info", then "Run anyway".
- Decompress and simply run the bat file
- On Linux:
- Run the JAR on Java 8:
java -jar jme-viewer.jar
- Run the JAR on Java 8:
- On Windows:
- From source code:
- Run the Main file in your favorite IDE.
skip-jme
doesn't show the JME setting window on start-upno-lighting
doesn't add lights to the scene
- Move with right-click or WASD keys
- Zoom in and out with mouse wheel
- Rotate with Q and E or by pressing Left Control when moving with right-click
The app uses the ouistiti camera manager library.
./gradlew clean build
./gradlew dependencyUpdates --refresh-dependencies
X Error of failed request: BadWindow (invalid Window parameter)
Major opcode of failed request: 20 (X_GetProperty)
Resource id in failed request: 0x9c0007c
Serial number of failed request: 2511
Current serial number in output stream: 2511
It doesn't happen when only the GUI is loaded (i.e. it happens only when the JME windows is loaded).
The green Bounding Box that highlights asset selection in the JME scene shifts out of its center when the asset is scaled or rotated. I think it has to do with the w rotation parameter, as I don't fully understand Quaternion yet
- Save all JME settings to the
preferences.properties
file (samples, vsync, etc.) - Add a window to change light settings.
- Upgrade Kotlin from
1.5.21
to1.6.21
- Upgrade jMonkeyEngine3 from
3.4.0-stable
to3.5.2-stable
- Upgrade libraries
- Fix bug where cloned assets would not be found on scene reload
- Delete selected asset from scene with the DELETE key
- Fix spelling mistakes
- Import/Add Assets to the scene
- Move, rotate, scale assets (by editing text fields values or with mouse wheel)
- Delete an asset from the scene
- Clone/Duplicate an asset from the scene
- Scan folders and list all assets to the "Library" panel
- Automatic save of the scene
- ouistiti: A basic camera manager for management/strategy games:
https://github.com/benckx/ouistiti - chimp-utils: A collection of Kotlin APIs and helpers for jMonkeyEngine:
https://github.com/benckx/chimp-utils - jme-asset-viewer: Minimalist GUI to preview/test 3D assets in a jMonkeyEngine scene:
https://github.com/benckx/jme-asset-viewer