Examples of ActorGestureListener


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

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
TOP
Copyright © 2018 www.massapi.com. 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.