Example usage for com.badlogic.gdx InputProcessor keyTyped

List of usage examples for com.badlogic.gdx InputProcessor keyTyped

Introduction

In this page you can find the example usage for com.badlogic.gdx InputProcessor keyTyped.

Prototype

public boolean keyTyped(char character);

Source Link

Document

Called when a key was typed

Usage

From source file:com.kamigaku.libgdx.extension.InputMultiplexerToggle.java

@Override
public boolean keyTyped(char character) {
    for (InputProcessor ip : _processors.keySet())
        if (_processors.get(ip) && ip.keyTyped(character))
            return true;
    return false;
}