OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeyInput
(Results
26 - 50
of
78
) sorted by null
1
2
3
4
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestRagdollCharacter.java
44
import com.jme3.input.
KeyInput
;
125
new KeyTrigger(
KeyInput
.KEY_H));
127
new KeyTrigger(
KeyInput
.KEY_K));
129
new KeyTrigger(
KeyInput
.KEY_U));
131
new KeyTrigger(
KeyInput
.KEY_J));
133
new KeyTrigger(
KeyInput
.KEY_SPACE),
134
new KeyTrigger(
KeyInput
.KEY_RETURN));
TestAttachGhostObject.java
43
import com.jme3.input.
KeyInput
;
68
inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_H));
69
inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_K));
70
inputManager.addMapping("Space", new KeyTrigger(
KeyInput
.KEY_SPACE));
TestAttachDriver.java
45
import com.jme3.input.
KeyInput
;
93
inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_H));
94
inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_K));
95
inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_U));
96
inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_J));
97
inputManager.addMapping("Space", new KeyTrigger(
KeyInput
.KEY_SPACE));
98
inputManager.addMapping("Reset", new KeyTrigger(
KeyInput
.KEY_RETURN));
TestFancyCar.java
42
import com.jme3.input.
KeyInput
;
72
inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_H));
73
inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_K));
74
inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_U));
75
inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_J));
76
inputManager.addMapping("Space", new KeyTrigger(
KeyInput
.KEY_SPACE));
77
inputManager.addMapping("Reset", new KeyTrigger(
KeyInput
.KEY_RETURN));
TestHoveringTank.java
45
import com.jme3.input.
KeyInput
;
94
inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_A));
95
inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_D));
96
inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_W));
97
inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_S));
98
inputManager.addMapping("Space", new KeyTrigger(
KeyInput
.KEY_SPACE));
99
inputManager.addMapping("Reset", new KeyTrigger(
KeyInput
.KEY_RETURN));
TestBoneRagdoll.java
46
import com.jme3.input.
KeyInput
;
211
inputManager.addMapping("toggle", new KeyTrigger(
KeyInput
.KEY_SPACE));
214
inputManager.addMapping("stop", new KeyTrigger(
KeyInput
.KEY_H));
215
inputManager.addMapping("bullet-", new KeyTrigger(
KeyInput
.KEY_COMMA));
216
inputManager.addMapping("bullet+", new KeyTrigger(
KeyInput
.KEY_PERIOD));
/external/jmonkeyengine/engine/src/test/jme3test/material/
TestParallax.java
35
import com.jme3.input.
KeyInput
;
142
inputManager.addMapping("heightUP", new KeyTrigger(
KeyInput
.KEY_I));
143
inputManager.addMapping("heightDown", new KeyTrigger(
KeyInput
.KEY_K));
154
inputManager.addMapping("toggleSteep", new KeyTrigger(
KeyInput
.KEY_SPACE));
/external/jmonkeyengine/engine/src/android/jme3test/android/
TestMovingParticle.java
37
import com.jme3.input.
KeyInput
;
91
inputManager.addMapping("setNum", new KeyTrigger(
KeyInput
.KEY_SPACE));
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
LwjglKeyInput.java
35
import com.jme3.input.
KeyInput
;
46
public class LwjglKeyInput implements
KeyInput
{
/external/jmonkeyengine/engine/src/test/jme3test/effect/
TestPointSprite.java
39
import com.jme3.input.
KeyInput
;
86
inputManager.addMapping("setNum", new KeyTrigger(
KeyInput
.KEY_SPACE));
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloAnimation.java
40
import com.jme3.input.
KeyInput
;
101
inputManager.addMapping("Walk", new KeyTrigger(
KeyInput
.KEY_SPACE));
HelloTerrainCollision.java
42
import com.jme3.input.
KeyInput
;
176
inputManager.addMapping("Left", new KeyTrigger(
KeyInput
.KEY_A));
177
inputManager.addMapping("Right", new KeyTrigger(
KeyInput
.KEY_D));
178
inputManager.addMapping("Up", new KeyTrigger(
KeyInput
.KEY_W));
179
inputManager.addMapping("Down", new KeyTrigger(
KeyInput
.KEY_S));
180
inputManager.addMapping("Jump", new KeyTrigger(
KeyInput
.KEY_SPACE));
/external/jmonkeyengine/engine/src/test/jme3test/animation/
TestCameraMotionPath.java
41
import com.jme3.input.
KeyInput
;
151
inputManager.addMapping("display_hidePath", new KeyTrigger(
KeyInput
.KEY_P));
152
inputManager.addMapping("SwitchPathInterpolation", new KeyTrigger(
KeyInput
.KEY_I));
153
inputManager.addMapping("tensionUp", new KeyTrigger(
KeyInput
.KEY_U));
154
inputManager.addMapping("tensionDown", new KeyTrigger(
KeyInput
.KEY_J));
155
inputManager.addMapping("play_stop", new KeyTrigger(
KeyInput
.KEY_SPACE));
TestMotionPath.java
40
import com.jme3.input.
KeyInput
;
145
inputManager.addMapping("display_hidePath", new KeyTrigger(
KeyInput
.KEY_P));
146
inputManager.addMapping("SwitchPathInterpolation", new KeyTrigger(
KeyInput
.KEY_I));
147
inputManager.addMapping("tensionUp", new KeyTrigger(
KeyInput
.KEY_U));
148
inputManager.addMapping("tensionDown", new KeyTrigger(
KeyInput
.KEY_J));
149
inputManager.addMapping("play_stop", new KeyTrigger(
KeyInput
.KEY_SPACE));
/external/jmonkeyengine/engine/src/test/jme3test/input/combomoves/
TestComboMoves.java
37
import com.jme3.input.
KeyInput
;
110
inputManager.addMapping("Left", new KeyTrigger(
KeyInput
.KEY_LEFT));
111
inputManager.addMapping("Right", new KeyTrigger(
KeyInput
.KEY_RIGHT));
112
inputManager.addMapping("Up", new KeyTrigger(
KeyInput
.KEY_UP));
113
inputManager.addMapping("Down", new KeyTrigger(
KeyInput
.KEY_DOWN));
114
inputManager.addMapping("Attack1", new KeyTrigger(
KeyInput
.KEY_Z));
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridSerializationTest.java
12
import com.jme3.input.
KeyInput
;
106
this.inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_A));
107
this.inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_D));
108
this.inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_W));
109
this.inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_S));
110
this.inputManager.addMapping("Jumps", new KeyTrigger(
KeyInput
.KEY_SPACE));
TerrainGridTest.java
12
import com.jme3.input.
KeyInput
;
166
this.inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_A));
167
this.inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_D));
168
this.inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_W));
169
this.inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_S));
170
this.inputManager.addMapping("Jumps", new KeyTrigger(
KeyInput
.KEY_SPACE));
TerrainGridTileLoaderTest.java
12
import com.jme3.input.
KeyInput
;
163
this.inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_A));
164
this.inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_D));
165
this.inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_W));
166
this.inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_S));
167
this.inputManager.addMapping("Jumps", new KeyTrigger(
KeyInput
.KEY_SPACE));
TerrainTestCollision.java
43
import com.jme3.input.
KeyInput
;
207
inputManager.addMapping("wireframe", new KeyTrigger(
KeyInput
.KEY_T));
209
inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_H));
210
inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_K));
211
inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_U));
212
inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_J));
213
inputManager.addMapping("Forwards", new KeyTrigger(
KeyInput
.KEY_Y));
214
inputManager.addMapping("Backs", new KeyTrigger(
KeyInput
.KEY_I));
TerrainTestAdvanced.java
37
import com.jme3.input.
KeyInput
;
213
inputManager.addMapping("wireframe", new KeyTrigger(
KeyInput
.KEY_T));
215
inputManager.addMapping("triPlanar", new KeyTrigger(
KeyInput
.KEY_P));
217
inputManager.addMapping("WardIso", new KeyTrigger(
KeyInput
.KEY_9));
219
inputManager.addMapping("Minnaert", new KeyTrigger(
KeyInput
.KEY_0));
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
InputSystemJme.java
35
import com.jme3.input.
KeyInput
;
182
if (code ==
KeyInput
.KEY_LSHIFT || code ==
KeyInput
.KEY_RSHIFT) {
184
} else if (code ==
KeyInput
.KEY_LCONTROL || code ==
KeyInput
.KEY_RCONTROL) {
/external/jmonkeyengine/engine/src/core/com/jme3/app/
SimpleApplication.java
38
import com.jme3.input.
KeyInput
;
201
inputManager.addMapping(INPUT_MAPPING_EXIT, new KeyTrigger(
KeyInput
.KEY_ESCAPE));
205
inputManager.addMapping(INPUT_MAPPING_HIDE_STATS, new KeyTrigger(
KeyInput
.KEY_F5));
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
ScreenshotAppState.java
5
import com.jme3.input.
KeyInput
;
39
inputManager.addMapping("ScreenShot", new KeyTrigger(
KeyInput
.KEY_SYSRQ));
/external/jmonkeyengine/engine/src/test/jme3test/gui/
TestBitmapFont.java
40
import com.jme3.input.
KeyInput
;
62
inputManager.addMapping("WordWrap", new KeyTrigger(
KeyInput
.KEY_TAB));
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestOgreAnim.java
37
import com.jme3.input.
KeyInput
;
95
inputManager.addMapping("Attack", new KeyTrigger(
KeyInput
.KEY_SPACE));
Completed in 492 milliseconds
1
2
3
4