jme-video-player Requirements jmonkeyengine - A complete 3D game development suite written purely in Java. Minie - A physics library for JMonkeyEngine. JavaFX JDK-11 (minimum), JDK-17 (preferred) Youtube Videos How to play a video intro for your game Destructible Wall Generator How to build on Mac/Linux Download jdk-17 (preferred) or jdk-11 (minimum) from : JDK-11 JDK-17 Clone locally. cd ./Gradle-Projects git clone https://github.com/capdevon/jme-video-player.git Run gradle build script: ./gradlew build Change the mainClassName to your favourite demo class in the build.gradle. Now test by running the gradle run task: ./gradlew run To visualize the stacktrace, add --stacktrace to the above commands: ./gradlew build --stacktrace ./gradlew run --stacktrace To stop the daemon process, use stop: ./gradlew -stop How to build on Windows Use the same commands with the same steps, but change ./gradlew with gradle: gradle build --stacktrace gradle run --stacktrace gradle -stop