Package com.jme3.app.state
package com.jme3.app.state
-
ClassDescription
AbstractAppState
implements some common methods that make creation of AppStates easier.AppState represents continuously executing code inside the main loop.TheAppStateManager
holds a list ofAppState
s which it will update and render.
When anAppState
is attached or detached, theAppState.stateAttached(com.jme3.app.state.AppStateManager)
andAppState.stateDetached(com.jme3.app.state.AppStateManager)
methods will be called respectively.An app state dedicated to the rendering of a JMonkey application within an AWT component.A base app state implementation the provides more built-in management convenience than AbstractAppState, including methods for enable/disable/initialize state management.Checks the various JME 'constants' for drift using either asserts or straight checks.Released under BSD LicenseAppState that manages and updates a RootNode attached to a ViewPort, the default Application ViewPort is used by default, a RootNode is created by default.A Video recording AppState that records the screen output into an AVI file with M-JPEG content.