OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeyInput
(Results
51 - 75
of
78
) sorted by null
1
2
3
4
/external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridAlphaMapTest.java
12
import com.jme3.input.
KeyInput
;
255
this.inputManager.addMapping("Lefts", new KeyTrigger(
KeyInput
.KEY_A));
256
this.inputManager.addMapping("Rights", new KeyTrigger(
KeyInput
.KEY_D));
257
this.inputManager.addMapping("Ups", new KeyTrigger(
KeyInput
.KEY_W));
258
this.inputManager.addMapping("Downs", new KeyTrigger(
KeyInput
.KEY_S));
259
this.inputManager.addMapping("Jumps", new KeyTrigger(
KeyInput
.KEY_SPACE));
TerrainTestReadWrite.java
39
import com.jme3.input.
KeyInput
;
179
inputManager.addMapping("save", new KeyTrigger(
KeyInput
.KEY_T));
182
inputManager.addMapping("load", new KeyTrigger(
KeyInput
.KEY_Y));
185
inputManager.addMapping("clone", new KeyTrigger(
KeyInput
.KEY_C));
TerrainTest.java
36
import com.jme3.input.
KeyInput
;
186
inputManager.addMapping("wireframe", new KeyTrigger(
KeyInput
.KEY_T));
188
inputManager.addMapping("triPlanar", new KeyTrigger(
KeyInput
.KEY_P));
/external/jmonkeyengine/engine/src/core/com/jme3/system/
NullContext.java
36
import com.jme3.input.
KeyInput
;
169
public
KeyInput
getKeyInput() {
/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
;
LwjglOffscreenBuffer.java
36
import com.jme3.input.
KeyInput
;
183
public
KeyInput
getKeyInput() {
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestWalkingChar.java
52
import com.jme3.input.
KeyInput
;
153
inputManager.addMapping("wireframe", new KeyTrigger(
KeyInput
.KEY_T));
155
inputManager.addMapping("CharLeft", new KeyTrigger(
KeyInput
.KEY_A));
156
inputManager.addMapping("CharRight", new KeyTrigger(
KeyInput
.KEY_D));
157
inputManager.addMapping("CharUp", new KeyTrigger(
KeyInput
.KEY_W));
158
inputManager.addMapping("CharDown", new KeyTrigger(
KeyInput
.KEY_S));
159
inputManager.addMapping("CharSpace", new KeyTrigger(
KeyInput
.KEY_RETURN));
160
inputManager.addMapping("CharShoot", new KeyTrigger(
KeyInput
.KEY_SPACE));
TestBrickWall.java
42
import com.jme3.input.
KeyInput
;
105
inputManager.addMapping("gc", new KeyTrigger(
KeyInput
.KEY_X));
/external/jmonkeyengine/engine/src/test/jme3test/effect/
TestSoftParticles.java
11
import com.jme3.input.
KeyInput
;
126
inputManager.addMapping("toggle", new KeyTrigger(
KeyInput
.KEY_SPACE));
/external/jmonkeyengine/engine/src/test/jme3test/light/
TestTangentGenBadModels.java
5
import com.jme3.input.
KeyInput
;
104
inputManager.addMapping("space", new KeyTrigger(
KeyInput
.KEY_SPACE));
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestAnimBlendBug.java
38
import com.jme3.input.
KeyInput
;
89
inputManager.addMapping("One", new KeyTrigger(
KeyInput
.KEY_1));
/external/jmonkeyengine/engine/src/test/jme3test/post/
TestBloom.java
36
import com.jme3.input.
KeyInput
;
138
inputManager.addMapping("toggle", new KeyTrigger(
KeyInput
.KEY_SPACE));
TestCrossHatch.java
36
import com.jme3.input.
KeyInput
;
132
inputManager.addMapping("toggle", new KeyTrigger(
KeyInput
.KEY_SPACE));
TestPosterization.java
36
import com.jme3.input.
KeyInput
;
132
inputManager.addMapping("toggle", new KeyTrigger(
KeyInput
.KEY_SPACE));
TestRenderToTexture.java
36
import com.jme3.input.
KeyInput
;
121
inputManager.addMapping(TOGGLE_UPDATE, new KeyTrigger(
KeyInput
.KEY_SPACE));
TestMultiViewsFilters.java
35
import com.jme3.input.
KeyInput
;
190
inputManager.addMapping("press", new KeyTrigger(
KeyInput
.KEY_SPACE));
191
inputManager.addMapping("filter", new KeyTrigger(
KeyInput
.KEY_F));
TestPostFilters.java
35
import com.jme3.input.
KeyInput
;
161
inputManager.addMapping("fadein", new KeyTrigger(
KeyInput
.KEY_I));
163
inputManager.addMapping("fadeout", new KeyTrigger(
KeyInput
.KEY_O));
/external/jmonkeyengine/engine/src/test/jme3test/games/
CubeField.java
39
import com.jme3.input.
KeyInput
;
305
inputManager.addMapping("START", new KeyTrigger(
KeyInput
.KEY_RETURN));
306
inputManager.addMapping("Left", new KeyTrigger(
KeyInput
.KEY_LEFT));
307
inputManager.addMapping("Right", new KeyTrigger(
KeyInput
.KEY_RIGHT));
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloPicking.java
39
import com.jme3.input.
KeyInput
;
86
new KeyTrigger(
KeyInput
.KEY_SPACE), // trigger 1: spacebar
/external/jmonkeyengine/engine/src/core/com/jme3/input/
KeyInput.java
38
public interface
KeyInput
extends Input {
KeyNames.java
3
import static com.jme3.input.
KeyInput
.*;
/external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeCluster.java
8
import com.jme3.input.
KeyInput
;
101
inputManager.addMapping("Start Game", new KeyTrigger(
KeyInput
.KEY_J));
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
OGLESContext.java
48
import com.jme3.input.
KeyInput
;
335
public
KeyInput
getKeyInput() {
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
AwtKeyInput.java
35
import com.jme3.input.
KeyInput
;
51
public class AwtKeyInput implements
KeyInput
, KeyListener {
134
* <code>convertJmeCode</code> converts
KeyInput
key codes to AWT key codes.
136
* @param key jme
KeyInput
key code
373
* <code>convertAwtKey</code> converts AWT key codes to
KeyInput
key codes.
376
* @return jme
KeyInput
key code
Completed in 529 milliseconds
1
2
3
4