Uses of Class
com.jme.input.controls.GameControl

Packages that use GameControl
com.jme.input.controls   
com.jme.input.controls.controller   
com.jmex.editors.swing.controls   
 

Uses of GameControl in com.jme.input.controls
 

Methods in com.jme.input.controls that return GameControl
 GameControl GameControlManager.addControl(java.lang.String name)
           
 GameControl GameControlManager.getControl(java.lang.String name)
           
 GameControl GameControlManager.removeControl(java.lang.String name)
           
 

Methods in com.jme.input.controls that return types with arguments of type GameControl
 java.util.Collection<GameControl> GameControlManager.getControls()
           
 

Uses of GameControl in com.jme.input.controls.controller
 

Methods in com.jme.input.controls.controller that return GameControl
 GameControl ThrottleController.getForward()
           
 GameControl RotationController.getNegative()
           
 GameControl RotationController.getPositive()
           
 GameControl ThrottleController.getReverse()
           
 

Methods in com.jme.input.controls.controller with parameters of type GameControl
 void ControlChangeListener.changed(GameControl control, float oldValue, float newValue, float time)
           
 void GameControlAction.pressed(GameControl control, float time)
          Invoked when the control is pressed
 void GameControlAction.released(GameControl control, float time)
          Invoked when the control is released
 void RotationController.setNegative(GameControl negative)
           
 void RotationController.setPositive(GameControl positive)
           
 

Constructors in com.jme.input.controls.controller with parameters of type GameControl
ActionChangeController(GameControl control, ControlChangeListener listener)
           
ActionController(GameControl control, GameControlAction action)
           
ActionRepeatController(GameControl control, long rate, java.lang.Runnable action)
           
CameraController(Spatial spatial, Camera camera, GameControl control)
           
RotationController(Spatial spatial, GameControl positive, GameControl negative, float multiplier, Axis axis)
           
ThrottleController(Spatial spatial, GameControl forward, float maxForwardThrottle, GameControl reverse, float maxReverseThrottle, float deadZone, float multiplier, float degradation, boolean alwaysDegrade, Axis axis)
           
 

Uses of GameControl in com.jmex.editors.swing.controls
 

Fields in com.jmex.editors.swing.controls with type parameters of type GameControl
protected  java.util.HashMap<GameControl,ControlField[]> GameControlEditor.controls
           
 

Methods in com.jmex.editors.swing.controls that return GameControl
 GameControl ControlField.getControl()
           
 

Constructors in com.jmex.editors.swing.controls with parameters of type GameControl
ControlField(GameControl control, Binding binding)