| Package | Description |
|---|---|
| com.badlogic.gdx | |
| com.badlogic.gdx.graphics.g3d.utils | |
| com.badlogic.gdx.input | |
| com.badlogic.gdx.scenes.scene2d |
| Modifier and Type | Class and Description |
|---|---|
class |
InputAdapter
An adapter class for
InputProcessor. |
class |
InputEventQueue
Queues events that are later passed to the wrapped
InputProcessor. |
class |
InputMultiplexer
An
InputProcessor that delegates to an ordered list of other InputProcessors. |
| Modifier and Type | Method and Description |
|---|---|
InputProcessor |
Input.getInputProcessor() |
InputProcessor |
InputEventQueue.getProcessor() |
| Modifier and Type | Method and Description |
|---|---|
Array<InputProcessor> |
InputMultiplexer.getProcessors() |
| Modifier and Type | Method and Description |
|---|---|
void |
InputMultiplexer.addProcessor(InputProcessor processor) |
void |
InputMultiplexer.addProcessor(int index,
InputProcessor processor) |
void |
InputMultiplexer.removeProcessor(InputProcessor processor) |
void |
Input.setInputProcessor(InputProcessor processor)
Sets the
InputProcessor that will receive all touch and key input events. |
void |
InputEventQueue.setProcessor(InputProcessor processor) |
| Modifier and Type | Method and Description |
|---|---|
void |
InputMultiplexer.setProcessors(Array<InputProcessor> processors) |
| Constructor and Description |
|---|
InputEventQueue(InputProcessor processor) |
InputMultiplexer(InputProcessor... processors) |
| Modifier and Type | Class and Description |
|---|---|
class |
CameraInputController |
class |
FirstPersonCameraController
Takes a
Camera instance and controls it via w,a,s,d and mouse panning. |
| Modifier and Type | Class and Description |
|---|---|
class |
GestureDetector
InputProcessor implementation that detects gestures (tap, long press, fling, pan, zoom, pinch) and hands them to a
GestureDetector.GestureListener. |
class |
RemoteSender
Sends all inputs from touch, key, accelerometer and compass to a
RemoteInput at the given ip/port. |
| Modifier and Type | Method and Description |
|---|---|
InputProcessor |
RemoteInput.getInputProcessor() |
| Modifier and Type | Method and Description |
|---|---|
void |
RemoteInput.setInputProcessor(InputProcessor processor) |
| Modifier and Type | Class and Description |
|---|---|
class |
Stage
A 2D scene graph containing hierarchies of
actors. |