Home | History | Annotate | Download | only in app

Lines Matching defs:inputManager

36 import com.jme3.input.InputManager;
59 private InputManager inputManager;
69 this.inputManager = app.getInputManager();
73 inputManager.addMapping(INPUT_MAPPING_CAMERA_POS, new KeyTrigger(KeyInput.KEY_C));
74 inputManager.addMapping(INPUT_MAPPING_MEMORY, new KeyTrigger(KeyInput.KEY_M));
76 inputManager.addListener(keyListener,
86 if (inputManager.hasMapping(INPUT_MAPPING_CAMERA_POS))
87 inputManager.deleteMapping(INPUT_MAPPING_CAMERA_POS);
88 if (inputManager.hasMapping(INPUT_MAPPING_MEMORY))
89 inputManager.deleteMapping(INPUT_MAPPING_MEMORY);
91 inputManager.removeListener(keyListener);