OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keyInput
(Results
1 - 11
of
11
) sorted by null
/external/jmonkeyengine/engine/src/test/jme3test/input/
TestChaseCamera.java
102
//chaseCam.setToggleRotationTrigger(new MouseButtonTrigger(MouseInput.BUTTON_MIDDLE),new KeyTrigger(
KeyInput
.KEY_SPACE));
110
inputManager.addMapping("moveForward", new KeyTrigger(
keyInput
.KEY_UP), new KeyTrigger(
keyInput
.KEY_W));
111
inputManager.addMapping("moveBackward", new KeyTrigger(
keyInput
.KEY_DOWN), new KeyTrigger(
keyInput
.KEY_S));
112
inputManager.addMapping("moveRight", new KeyTrigger(
keyInput
.KEY_RIGHT), new KeyTrigger(
keyInput
.KEY_D));
113
inputManager.addMapping("moveLeft", new KeyTrigger(
keyInput
.KEY_LEFT), new KeyTrigger(
keyInput
.KEY_A));
114
inputManager.addMapping("displayPosition", new KeyTrigger(
keyInput
.KEY_P))
[
all
...]
TestCameraNode.java
102
inputManager.addMapping("moveForward", new KeyTrigger(
keyInput
.KEY_UP), new KeyTrigger(
keyInput
.KEY_W));
103
inputManager.addMapping("moveBackward", new KeyTrigger(
keyInput
.KEY_DOWN), new KeyTrigger(
keyInput
.KEY_S));
104
inputManager.addMapping("moveRight", new KeyTrigger(
keyInput
.KEY_RIGHT), new KeyTrigger(
keyInput
.KEY_D));
105
inputManager.addMapping("moveLeft", new KeyTrigger(
keyInput
.KEY_LEFT), new KeyTrigger(
keyInput
.KEY_A));
/external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java
90
protected
KeyInput
keyInput
;
274
keyInput
= context.getKeyInput();
275
if (
keyInput
!= null)
276
keyInput
.initialize();
288
inputManager = new InputManager(mouseInput,
keyInput
, joyInput, touchInput);
619
if (
keyInput
!= null)
620
keyInput
.destroy();
/external/jmonkeyengine/engine/src/test/jme3test/post/
TestDepthOfField.java
128
inputManager.addMapping("toggle", new KeyTrigger(
keyInput
.KEY_SPACE));
129
inputManager.addMapping("blurScaleUp", new KeyTrigger(
keyInput
.KEY_U));
130
inputManager.addMapping("blurScaleDown", new KeyTrigger(
keyInput
.KEY_J));
131
inputManager.addMapping("focusRangeUp", new KeyTrigger(
keyInput
.KEY_I));
132
inputManager.addMapping("focusRangeDown", new KeyTrigger(
keyInput
.KEY_K));
133
inputManager.addMapping("focusDistanceUp", new KeyTrigger(
keyInput
.KEY_O));
134
inputManager.addMapping("focusDistanceDown", new KeyTrigger(
keyInput
.KEY_L));
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanelsContext.java
4
import com.jme3.input.
KeyInput
;
22
protected AwtKeyInput
keyInput
= new AwtKeyInput();
70
keyInput
.setInputSource(panel);
93
public
KeyInput
getKeyInput() {
94
return
keyInput
;
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglAbstractDisplay.java
36
import com.jme3.input.
KeyInput
;
245
public
KeyInput
getKeyInput() {
246
if (
keyInput
== null){
247
keyInput
= new LwjglKeyInput(this);
249
return
keyInput
;
LwjglContext.java
63
protected LwjglKeyInput
keyInput
;
139
if (
keyInput
!= null)
140
keyInput
.initialize();
/external/jmonkeyengine/engine/src/test/jme3test/animation/
TestCinematic.java
249
inputManager.addMapping("togglePause", new KeyTrigger(
keyInput
.KEY_RETURN));
250
inputManager.addMapping("navFwd", new KeyTrigger(
keyInput
.KEY_RIGHT));
251
inputManager.addMapping("navBack", new KeyTrigger(
keyInput
.KEY_LEFT));
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
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/test/jme3test/water/
TestPostWaterLake.java
120
inputManager.addMapping("HQ", new KeyTrigger(
keyInput
.KEY_SPACE));
TestPostWater.java
168
inputManager.addMapping("foam1", new KeyTrigger(
keyInput
.KEY_1));
169
inputManager.addMapping("foam2", new KeyTrigger(
keyInput
.KEY_2));
170
inputManager.addMapping("foam3", new KeyTrigger(
keyInput
.KEY_3));
Completed in 173 milliseconds