HomeSort by relevance Sort by last modified time
    Searched refs:maxFlingDelay (Results 1 - 2 of 2) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/input/
GestureDetector.java 35 private long maxFlingDelay;
62 * maxFlingDelay=0.15f. */
72 * @param maxFlingDelay time in seconds the finger must have been dragged for a fling event to be fired, see
75 public GestureDetector (float halfTapSquareSize, float tapCountInterval, float longPressDuration, float maxFlingDelay,
80 this.maxFlingDelay = (long)(maxFlingDelay * 1000000000l);
219 if (time - tracker.lastTime < maxFlingDelay) {
276 public void setMaxFlingDelay (long maxFlingDelay) {
277 this.maxFlingDelay = maxFlingDelay;
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
ActorGestureListener.java 44 public ActorGestureListener (float halfTapSquareSize, float tapCountInterval, float longPressDuration, float maxFlingDelay) {
45 detector = new GestureDetector(halfTapSquareSize, tapCountInterval, longPressDuration, maxFlingDelay, new GestureAdapter() {

Completed in 40 milliseconds