Extending your application from com.jme3.app.SimpleApplication provides you with an update loop. This is where you implement your game logic (game mechanics).
Examples: Here you remote-control NPCs (computer controlled characters), generate game events, and respond to user input.
simpleInit()
)simpleUpdate()
method)simpleRender()
method)Useā¦
simpleUpdate()
to implement the rest, or for testing during development.