| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
jMonkeyEngine is a 3-D game engine for adventurous Java developers. It’s open-source, cross-platform, and cutting-edge. v3.8.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.
After a successful build, fresh JARs will be found in "*/build/libs".
You can install the JARs to your local Maven repository:
You can run the "jme3-examples" app:
You can restore the project to a pristine state:
The engine comes with some examples that you can run with:
./gradlew runExamplesYou can optionally use the -Pexample property to specify an example to start without the need to navigate the test chooser, e.g.:
./gradlew runExamples -Pexample=jme3test.light.pbr.TestPBRSimpleYou can run the Android examples on a local android emulator with:
./gradlew runAndroidExamples
# or for a specific example:
# ./gradlew runAndroidExamples -Pexample=jme3test.post.TestBloomMake sure to have the SDK installed and configured properly, and the emulator running before executing the command.
To run all tests and generate a JaCoCo code coverage report, run the testCodeCoverageReport Gradle task. To avoid the generation of the report, use the test task instead.
This runs all subproject tests and produces two sets of HTML reports:
A summary index linking to every per-module report is also generated at: build/reports/jacoco/index.html
| Back | FazBrowse Home | New Git URL |