The JME3 Development Environment The JME3 development environment is based on NetBeans. If you are familiar with this environment, then JME3 will be easy to pickup. If not, then you should not have much difficulty using JME3 as it is well organized. We will point out those features that you…
Category: jMonkeyEngine
jMonkey – Game Logic and Application States
Understanding Application States The Appstate interface is found in the com.jme3.app.state package. It allows us to control the logic of the game on a global scale. Application states are used to handle a wide variety of different situations and to simplify the simpleUpdate method. Let’s look at a few different…