Quick Start
There are several ways to start a project with jMonkeyEngine:
Using the Netbeans-based SDK is by far the quickest solution to get you up and running. Everything needed is provided, along with extra tools and integrations, and is generally the place most users start their endevour. Download the SDK.
The initializer is a convenient online tool that build a starter gradle script and template for your application.
You can access the tool directly from here or use the embedded version below.
The engine itself and its dependencies can be downloaded from the releases page and used as any other java library.
If you prefer to use a build automation tool, you can find the engine hosted on the Maven Central Repository. This is the most common approach for users that use an IDE or editor that supports maven or gradle build scripts (such as IntelliJ IDEA or Visual Studio Code ).
The code below shows how to include the bare minimum to use the jMonkeyEngine in your gradle project
repositories {
mavenCentral()
}
dependencies {
implementation "org.jmonkeyengine:jme3-core:3.3.2-stable"
implementation "org.jmonkeyengine:jme3-desktop:3.3.2-stable"
implementation "org.jmonkeyengine:jme3-lwjgl3:3.3.2-stable"
}
Creating a Game
All games created with jmonkey start by extending SimpleApplication
. Below is the most basic setup required to start your game and show a cube.
package my.game;
import com.jme3.app.SimpleApplication;
import com.jme3.material.Material;
import com.jme3.math.ColorRGBA;
import com.jme3.scene.Geometry;
import com.jme3.scene.shape.Box;
import com.jme3.system.AppSettings;
public class Main extends SimpleApplication {
public static void main(String[] args) {
Main app = new Main();
AppSettings settings = new AppSettings(true);
settings.setTitle("My Awesome Game");
app.setSettings(settings);
app.start();
}
@Override
public void simpleInitApp() {
Box b = new Box(1, 1, 1);
Geometry geom = new Geometry("Box", b);
Material mat = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
mat.setColor("Color", ColorRGBA.Blue);
geom.setMaterial(mat);
rootNode.attachChild(geom);
}
@Override
public void simpleUpdate(float tpf) {
//TODO: add update code
}
}
Running this class will start your first game and display a blue box on the screen, and you can move around using your mouse and WASD keys. Congratulations! You’re running your first JME game!
For a more thorough tutorial on jMonkey browse through our wiki. The wiki provides extended documentation as well as tutorials on how to develop your game effectively using jmonkey practices. Tutorials start from the basics all the way up to collision detection, input mapping and shaders, and will be your go-to place for most of the information you require.
If you ever find yourself confused or wondering how something is done, head over to our community hub and create a new thread. Our ultra-helpful team and community will be more than happy to give you a hand in getting you back on track.