libgdx API

Uses of Interface
com.badlogic.gdx.InputProcessor

Packages that use InputProcessor
com.badlogic.gdx   
com.badlogic.gdx.input   
com.badlogic.gdx.scenes.scene2d   
 

Uses of InputProcessor in com.badlogic.gdx
 

Classes in com.badlogic.gdx that implement InputProcessor
 class InputAdapter
          An adapter class for InputProcessor.
 class InputMultiplexer
          An InputProcessor that delegates to an ordered list of other InputProcessors.
 

Methods in com.badlogic.gdx that return InputProcessor
 InputProcessor Input.getInputProcessor()
           
 

Methods in com.badlogic.gdx that return types with arguments of type InputProcessor
 Array<InputProcessor> InputMultiplexer.getProcessors()
           
 

Methods in com.badlogic.gdx with parameters of type InputProcessor
 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.
 

Method parameters in com.badlogic.gdx with type arguments of type InputProcessor
 void InputMultiplexer.setProcessors(Array<InputProcessor> processors)
           
 

Constructors in com.badlogic.gdx with parameters of type InputProcessor
InputMultiplexer(InputProcessor... processors)
           
 

Uses of InputProcessor in com.badlogic.gdx.input
 

Classes in com.badlogic.gdx.input that implement InputProcessor
 class GestureDetector
           
 class RemoteSender
          Sends all inputs from touch, key, accelerometer and compass to a RemoteInput at the given ip/port.
 

Methods in com.badlogic.gdx.input that return InputProcessor
 InputProcessor RemoteInput.getInputProcessor()
           
 

Methods in com.badlogic.gdx.input with parameters of type InputProcessor
 void RemoteInput.setInputProcessor(InputProcessor processor)
           
 

Uses of InputProcessor in com.badlogic.gdx.scenes.scene2d
 

Classes in com.badlogic.gdx.scenes.scene2d that implement InputProcessor
 class Stage
          A stage is a container for Actors and handles distributing touch events, animating actors and asking them to render themselves.
 


libgdx API

Copyright 2010 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com)