OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mouseInput
(Results
1 - 4
of
4
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java
89
protected
MouseInput
mouseInput
;
270
mouseInput
= context.getMouseInput();
271
if (
mouseInput
!= null)
272
mouseInput
.initialize();
288
inputManager = new InputManager(
mouseInput
, keyInput, joyInput, touchInput);
616
if (
mouseInput
!= null)
617
mouseInput
.destroy();
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanelsContext.java
5
import com.jme3.input.
MouseInput
;
21
protected AwtMouseInput
mouseInput
= new AwtMouseInput();
69
mouseInput
.setInputSource(panel);
89
public
MouseInput
getMouseInput() {
90
return
mouseInput
;
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglAbstractDisplay.java
37
import com.jme3.input.
MouseInput
;
238
public
MouseInput
getMouseInput() {
239
if (
mouseInput
== null){
240
mouseInput
= new LwjglMouseInput(this);
242
return
mouseInput
;
LwjglContext.java
64
protected LwjglMouseInput
mouseInput
;
142
if (
mouseInput
!= null)
143
mouseInput
.initialize();
Completed in 42 milliseconds