Home
last modified time | relevance | path

Searched refs:INPUT_MAPPING_MEMORY (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/app/
DDebugKeysAppState.java55 public static final String INPUT_MAPPING_MEMORY = "SIMPLEAPP_Memory"; field in DebugKeysAppState
74 inputManager.addMapping(INPUT_MAPPING_MEMORY, new KeyTrigger(KeyInput.KEY_M)); in initialize()
78 INPUT_MAPPING_MEMORY); in initialize()
88 if (inputManager.hasMapping(INPUT_MAPPING_MEMORY)) in cleanup()
89 inputManager.deleteMapping(INPUT_MAPPING_MEMORY); in cleanup()
112 } else if (name.equals(INPUT_MAPPING_MEMORY)) { in onAction()
DSimpleApplication.java71 public static final String INPUT_MAPPING_MEMORY = DebugKeysAppState.INPUT_MAPPING_MEMORY; field in SimpleApplication