OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:joyInput
(Results
1 - 4
of
4
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/input/
Joystick.java
14
private
JoyInput
joyInput
;
24
public Joystick(InputManager inputManager,
JoyInput
joyInput
,
28
this.
joyInput
=
joyInput
;
44
joyInput
.setJoyRumble(joyId, amount);
/external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java
91
protected
JoyInput
joyInput
;
283
joyInput
= context.getJoyInput();
284
if (
joyInput
!= null)
285
joyInput
.initialize();
288
inputManager = new InputManager(mouseInput, keyInput,
joyInput
, touchInput);
622
if (
joyInput
!= null)
623
joyInput
.destroy();
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglAbstractDisplay.java
35
import com.jme3.input.
JoyInput
;
231
public
JoyInput
getJoyInput() {
232
if (
joyInput
== null){
233
joyInput
= new JInputJoyInput();
235
return
joyInput
;
LwjglContext.java
65
protected JInputJoyInput
joyInput
;
145
if (
joyInput
!= null)
146
joyInput
.initialize();
Completed in 36 milliseconds