Package com.badlogic.gdx.scenes.scene2d.utils

Examples of com.badlogic.gdx.scenes.scene2d.utils.ActorGestureListener


        if (!flickScroll) resetFade();
        return false;
      }
    });

    flickScrollListener = new ActorGestureListener() {
      public void pan (InputEvent event, float x, float y, float deltaX, float deltaY) {
        resetFade();
        amountX -= deltaX;
        amountY += deltaY;
        clamp();
View Full Code Here


        if (!flickScroll) resetFade();
        return false;
      }
    });

    flickScrollListener = new ActorGestureListener() {
      public void pan (InputEvent event, float x, float y, float deltaX, float deltaY) {
        resetFade();
        amountX -= deltaX;
        amountY += deltaY;
        clamp();
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.scenes.scene2d.utils.ActorGestureListener

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.