Building jMonkeyEngine 3 from the Sources
We recommend downloading the jMonkeyEngine SDK - but of course you can also build the jMonkeyEngine yourself from the sources. In this case, you need the Subversion file version system installed (svn).
- Checkout: Checkout the Subversion repository.
svn checkout http://jmonkeyengine.googlecode.com/svn/trunk/engine jme3
- You can leave login and password empty
- Build: Execute
ant jar- This compiles the JAR files in
dist/libs/*
- Javadoc: Execute
ant javadoc- This generates javadocs in the
dist/javadocdirectory.
- Run: Execute
ant run- This runs the TestChooser where you can browse examples.
- Use: Create a Java SE project and place all JARs from the
dist/libdirectory on the classpath.- You can now extend your first game from
com.jme3.app.SimpleApplication.
For a detailed description of the created jar files see this list.
Learn more about:
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution 3.0 Unported