/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/ |
DummyKeyInput.java | 35 import com.jme3.input.KeyInput; 38 * DummyKeyInput as an implementation of <code>KeyInput</code> that raises no 43 public class DummyKeyInput extends DummyInput implements KeyInput {
|
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/ |
AndroidInput.java | 10 import com.jme3.input.KeyInput;
57 KeyInput.KEY_HOME,
58 KeyInput.KEY_ESCAPE, // key back
61 KeyInput.KEY_0,
62 KeyInput.KEY_1,
63 KeyInput.KEY_2,
64 KeyInput.KEY_3,
65 KeyInput.KEY_4,
66 KeyInput.KEY_5,
67 KeyInput.KEY_6, [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/post/ |
BloomUI.java | 35 import com.jme3.input.KeyInput; 55 inputManager.addMapping("blurScaleUp", new KeyTrigger(KeyInput.KEY_Y)); 56 inputManager.addMapping("blurScaleDown", new KeyTrigger(KeyInput.KEY_H)); 57 inputManager.addMapping("exposurePowerUp", new KeyTrigger(KeyInput.KEY_U)); 58 inputManager.addMapping("exposurePowerDown", new KeyTrigger(KeyInput.KEY_J)); 59 inputManager.addMapping("exposureCutOffUp", new KeyTrigger(KeyInput.KEY_I)); 60 inputManager.addMapping("exposureCutOffDown", new KeyTrigger(KeyInput.KEY_K)); 61 inputManager.addMapping("bloomIntensityUp", new KeyTrigger(KeyInput.KEY_O)); 62 inputManager.addMapping("bloomIntensityDown", new KeyTrigger(KeyInput.KEY_L));
|
SSAOUI.java | 35 import com.jme3.input.KeyInput; 65 inputManager.addMapping("sampleRadiusUp", new KeyTrigger(KeyInput.KEY_Y)); 66 inputManager.addMapping("sampleRadiusDown", new KeyTrigger(KeyInput.KEY_H)); 67 inputManager.addMapping("intensityUp", new KeyTrigger(KeyInput.KEY_U)); 68 inputManager.addMapping("intensityDown", new KeyTrigger(KeyInput.KEY_J)); 69 inputManager.addMapping("scaleUp", new KeyTrigger(KeyInput.KEY_I)); 70 inputManager.addMapping("scaleDown", new KeyTrigger(KeyInput.KEY_K)); 71 inputManager.addMapping("biasUp", new KeyTrigger(KeyInput.KEY_O)); 72 inputManager.addMapping("biasDown", new KeyTrigger(KeyInput.KEY_L)); 73 inputManager.addMapping("outputConfig", new KeyTrigger(KeyInput.KEY_P)) [all...] |
LightScatteringUI.java | 36 import com.jme3.input.KeyInput; 62 inputManager.addMapping("sampleUp", new KeyTrigger(KeyInput.KEY_Y)); 63 inputManager.addMapping("sampleDown", new KeyTrigger(KeyInput.KEY_H)); 64 inputManager.addMapping("blurStartUp", new KeyTrigger(KeyInput.KEY_U)); 65 inputManager.addMapping("blurStartDown", new KeyTrigger(KeyInput.KEY_J)); 66 inputManager.addMapping("blurWidthUp", new KeyTrigger(KeyInput.KEY_I)); 67 inputManager.addMapping("blurWidthDown", new KeyTrigger(KeyInput.KEY_K)); 68 inputManager.addMapping("lightDensityUp", new KeyTrigger(KeyInput.KEY_O)); 69 inputManager.addMapping("lightDensityDown", new KeyTrigger(KeyInput.KEY_L)); 70 inputManager.addMapping("outputConfig", new KeyTrigger(KeyInput.KEY_P)) [all...] |
TestFog.java | 38 import com.jme3.input.KeyInput; 111 inputManager.addMapping("toggle", new KeyTrigger(KeyInput.KEY_SPACE)); 112 inputManager.addMapping("DensityUp", new KeyTrigger(KeyInput.KEY_Y)); 113 inputManager.addMapping("DensityDown", new KeyTrigger(KeyInput.KEY_H)); 114 inputManager.addMapping("DistanceUp", new KeyTrigger(KeyInput.KEY_U)); 115 inputManager.addMapping("DistanceDown", new KeyTrigger(KeyInput.KEY_J));
|
TestMultiplesFilters.java | 37 import com.jme3.input.KeyInput; 147 inputManager.addMapping("toggleSSAO", new KeyTrigger(KeyInput.KEY_1)); 148 inputManager.addMapping("toggleWater", new KeyTrigger(KeyInput.KEY_2)); 149 inputManager.addMapping("toggleBloom", new KeyTrigger(KeyInput.KEY_3)); 150 inputManager.addMapping("toggleOverlay", new KeyTrigger(KeyInput.KEY_4));
|
/external/jmonkeyengine/engine/src/test/jme3test/water/ |
WaterUI.java | 36 import com.jme3.input.KeyInput; 61 inputManager.addMapping("transparencyUp", new KeyTrigger(KeyInput.KEY_Y)); 62 inputManager.addMapping("transparencyDown", new KeyTrigger(KeyInput.KEY_H)); 63 inputManager.addMapping("depthUp", new KeyTrigger(KeyInput.KEY_U)); 64 inputManager.addMapping("depthDown", new KeyTrigger(KeyInput.KEY_J)); 65 // inputManager.addMapping("scaleUp", new KeyTrigger(KeyInput.KEY_I)); 66 // inputManager.addMapping("scaleDown", new KeyTrigger(KeyInput.KEY_K)); 67 // inputManager.addMapping("biasUp", new KeyTrigger(KeyInput.KEY_O)); 68 // inputManager.addMapping("biasDown", new KeyTrigger(KeyInput.KEY_L)); 69 // inputManager.addMapping("outputConfig", new KeyTrigger(KeyInput.KEY_P)) [all...] |
TestSimpleWater.java | 36 import com.jme3.input.KeyInput; 120 inputManager.addMapping("use_water", new KeyTrigger(KeyInput.KEY_O)); 122 inputManager.addMapping("lightup", new KeyTrigger(KeyInput.KEY_T)); 124 inputManager.addMapping("lightdown", new KeyTrigger(KeyInput.KEY_G)); 126 inputManager.addMapping("lightleft", new KeyTrigger(KeyInput.KEY_H)); 128 inputManager.addMapping("lightright", new KeyTrigger(KeyInput.KEY_K)); 130 inputManager.addMapping("lightforward", new KeyTrigger(KeyInput.KEY_U)); 132 inputManager.addMapping("lightback", new KeyTrigger(KeyInput.KEY_J));
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/ |
KeyTrigger.java | 35 import com.jme3.input.KeyInput; 49 * @param keyCode the code for the key, see constants in {@link KeyInput}.
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestPhysicsCharacter.java | 32 import com.jme3.input.KeyInput;
67 new KeyTrigger(KeyInput.KEY_Q),
68 new KeyTrigger(KeyInput.KEY_Z));
70 new KeyTrigger(KeyInput.KEY_E),
71 new KeyTrigger(KeyInput.KEY_X));
73 new KeyTrigger(KeyInput.KEY_A),
74 new KeyTrigger(KeyInput.KEY_LEFT));
76 new KeyTrigger(KeyInput.KEY_D),
77 new KeyTrigger(KeyInput.KEY_RIGHT));
79 new KeyTrigger(KeyInput.KEY_W), [all...] |
TestQ3.java | 43 import com.jme3.input.KeyInput; 141 inputManager.addMapping("Lefts", new KeyTrigger(KeyInput.KEY_A)); 142 inputManager.addMapping("Rights", new KeyTrigger(KeyInput.KEY_D)); 143 inputManager.addMapping("Ups", new KeyTrigger(KeyInput.KEY_W)); 144 inputManager.addMapping("Downs", new KeyTrigger(KeyInput.KEY_S)); 145 inputManager.addMapping("Space", new KeyTrigger(KeyInput.KEY_SPACE));
|
TestPhysicsHingeJoint.java | 41 import com.jme3.input.KeyInput; 57 inputManager.addMapping("Left", new KeyTrigger(KeyInput.KEY_H)); 58 inputManager.addMapping("Right", new KeyTrigger(KeyInput.KEY_K)); 59 inputManager.addMapping("Swing", new KeyTrigger(KeyInput.KEY_SPACE));
|
TestPhysicsCar.java | 41 import com.jme3.input.KeyInput; 83 inputManager.addMapping("Lefts", new KeyTrigger(KeyInput.KEY_H)); 84 inputManager.addMapping("Rights", new KeyTrigger(KeyInput.KEY_K)); 85 inputManager.addMapping("Ups", new KeyTrigger(KeyInput.KEY_U)); 86 inputManager.addMapping("Downs", new KeyTrigger(KeyInput.KEY_J)); 87 inputManager.addMapping("Space", new KeyTrigger(KeyInput.KEY_SPACE)); 88 inputManager.addMapping("Reset", new KeyTrigger(KeyInput.KEY_RETURN));
|
/external/jmonkeyengine/engine/src/core/com/jme3/system/ |
JmeContext.java | 36 import com.jme3.input.KeyInput; 122 public KeyInput getKeyInput();
|
/external/jmonkeyengine/engine/src/test/jme3test/renderer/ |
TestParallelProjection.java | 36 import com.jme3.input.KeyInput; 69 inputManager.addMapping("Size+", new KeyTrigger(KeyInput.KEY_W)); 70 inputManager.addMapping("Size-", new KeyTrigger(KeyInput.KEY_S));
|
/external/jmonkeyengine/engine/src/test/jme3test/collision/ |
TestTriangleCollision.java | 38 import com.jme3.input.KeyInput; 84 inputManager.addMapping("MoveRight", new KeyTrigger(KeyInput.KEY_L)); 85 inputManager.addMapping("MoveLeft", new KeyTrigger(KeyInput.KEY_J)); 86 inputManager.addMapping("MoveUp", new KeyTrigger(KeyInput.KEY_I)); 87 inputManager.addMapping("MoveDown", new KeyTrigger(KeyInput.KEY_K));
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/ |
FlyByCamera.java | 179 new KeyTrigger(KeyInput.KEY_LEFT));
182 new KeyTrigger(KeyInput.KEY_RIGHT));
185 new KeyTrigger(KeyInput.KEY_UP));
188 new KeyTrigger(KeyInput.KEY_DOWN));
196 inputManager.addMapping("FLYCAM_StrafeLeft", new KeyTrigger(KeyInput.KEY_A));
197 inputManager.addMapping("FLYCAM_StrafeRight", new KeyTrigger(KeyInput.KEY_D));
198 inputManager.addMapping("FLYCAM_Forward", new KeyTrigger(KeyInput.KEY_W));
199 inputManager.addMapping("FLYCAM_Backward", new KeyTrigger(KeyInput.KEY_S));
200 inputManager.addMapping("FLYCAM_Rise", new KeyTrigger(KeyInput.KEY_Q));
201 inputManager.addMapping("FLYCAM_Lower", new KeyTrigger(KeyInput.KEY_Z)); [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
HelloCollision.java | 43 import com.jme3.input.KeyInput; 131 inputManager.addMapping("Left", new KeyTrigger(KeyInput.KEY_A)); 132 inputManager.addMapping("Right", new KeyTrigger(KeyInput.KEY_D)); 133 inputManager.addMapping("Up", new KeyTrigger(KeyInput.KEY_W)); 134 inputManager.addMapping("Down", new KeyTrigger(KeyInput.KEY_S)); 135 inputManager.addMapping("Jump", new KeyTrigger(KeyInput.KEY_SPACE));
|
HelloInput.java | 36 import com.jme3.input.KeyInput;
72 inputManager.addMapping("Pause", new KeyTrigger(keyInput.KEY_P));
73 inputManager.addMapping("Left", new KeyTrigger(KeyInput.KEY_J));
74 inputManager.addMapping("Right", new KeyTrigger(KeyInput.KEY_K));
75 inputManager.addMapping("Rotate", new KeyTrigger(KeyInput.KEY_SPACE), // spacebar!
|
/external/jmonkeyengine/engine/src/core/com/jme3/app/ |
DebugKeysAppState.java | 37 import com.jme3.input.KeyInput; 73 inputManager.addMapping(INPUT_MAPPING_CAMERA_POS, new KeyTrigger(KeyInput.KEY_C)); 74 inputManager.addMapping(INPUT_MAPPING_MEMORY, new KeyTrigger(KeyInput.KEY_M));
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/ |
KeyInputEvent.java | 35 import com.jme3.input.KeyInput; 68 * See KEY_*** constants in {@link KeyInput}.
|
/external/jmonkeyengine/engine/src/test/jme3test/light/ |
TestPssmShadow.java | 36 import com.jme3.input.KeyInput; 123 inputManager.addMapping("toggle", new KeyTrigger(KeyInput.KEY_SPACE)); 124 inputManager.addMapping("ShadowUp", new KeyTrigger(KeyInput.KEY_T)); 125 inputManager.addMapping("ShadowDown", new KeyTrigger(KeyInput.KEY_G)); 126 inputManager.addMapping("ThicknessUp", new KeyTrigger(KeyInput.KEY_Y)); 127 inputManager.addMapping("ThicknessDown", new KeyTrigger(KeyInput.KEY_H)); 128 inputManager.addMapping("lambdaUp", new KeyTrigger(KeyInput.KEY_U)); 129 inputManager.addMapping("lambdaDown", new KeyTrigger(KeyInput.KEY_J)); 130 inputManager.addMapping("toggleHW", new KeyTrigger(KeyInput.KEY_RETURN));
|
/external/jmonkeyengine/engine/src/test/jme3test/effect/ |
TestMovingParticle.java | 37 import com.jme3.input.KeyInput; 83 inputManager.addMapping("setNum", new KeyTrigger(KeyInput.KEY_SPACE));
|
/external/jmonkeyengine/engine/src/test/jme3test/input/ |
TestControls.java | 36 import com.jme3.input.KeyInput; 65 new KeyTrigger(KeyInput.KEY_SPACE),
|