Package com.badlogic.gdx.input

Examples of com.badlogic.gdx.input.GestureDetector


    this.stage = stage;
    this.widget = widget;
    if (widget != null) this.addActor(widget);

    gestureDetector = new GestureDetector(new GestureListener() {
      public boolean pan (int x, int y, int deltaX, int deltaY) {
        amountX -= deltaX;
        amountY += deltaY;
        clamp();
        return false;
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.input.GestureDetector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.