Java com.badlogic.gdx InputProcessor fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx InputProcessor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx InputProcessor.

The text is from its open source code.

Implementation

com.badlogic.gdx.InputProcessor has the following implementations.
Click this link to see all its implementation.

Constructor

Method

booleankeyDown(int keycode)
Called when a key was pressed
booleankeyTyped(char character)
Called when a key was typed
booleankeyUp(int keycode)
Called when a key was released
booleanmouseMoved(int screenX, int screenY)
Called when the mouse was moved without any buttons being pressed.
booleanscrolled(int amount)
Called when the mouse wheel was scrolled.
booleantouchDown(int screenX, int screenY, int pointer, int button)
Called when the screen was touched or a mouse button was pressed.
booleantouchDragged(int screenX, int screenY, int pointer)
Called when a finger or the mouse was dragged.
booleantouchUp(int screenX, int screenY, int pointer, int button)
Called when a finger was lifted or a mouse button was released.