A complete 3-D game development suite written in Java.
jMonkeyEngine is a 3-D game engine for adventurous Java developers. It’s open-source, cross-platform, and cutting-edge.
v3.7.0 is the latest stable version of the engine.
The engine is used by several commercial game studios and computer-science courses. Here’s a taste:
Go to https://github.com/jMonkeyEngine/sdk/releases to download the jMonkeyEngine SDK.
Read the wiki for the installation guide and tutorials.
Join the discussion forum to participate in our community,
get your questions answered, and share your projects.
Note: The master branch on GitHub is a development version of the engine and is NOT MEANT TO BE USED IN PRODUCTION.
Did you miss it? Don’t sweat it, here it is again.
Read our contribution guide.
JAVA_HOME
environment variable to your JDK installation:export JAVA_HOME="
path to installation "
set -g JAVA_HOME "
path to installation "
set JAVA_HOME="
path to installation "
$env:JAVA_HOME = '
path to installation '
git clone https://github.com/jMonkeyEngine/jmonkeyengine.git
cd jmonkeyengine
git checkout -b latest v3.7.0-stable
(unless you plan to do development)cd
to the extracted directory/folder./gradlew build
.\gradlew build
After a successful build,
fresh JARs will be found in “*/build/libs”.
You can install the JARs to your local Maven repository:
./gradlew install
.\gradlew install
You can run the “jme3-examples” app:
./gradlew run
.\gradlew run
You can restore the project to a pristine state:
./gradlew clean
.\gradlew clean