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

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
DragListener.java 28 private float tapSquareSize = 14, touchDownX = -1, touchDownY = -1, stageTouchDownX = -1, stageTouchDownY = -1;
47 if (!dragging && (Math.abs(touchDownX - x) > tapSquareSize || Math.abs(touchDownY - y) > tapSquareSize)) {
90 tapSquareSize = halfTapSquareSize;
94 return tapSquareSize;
ClickListener.java 36 private float tapSquareSize = 14, touchDownX = -1, touchDownY = -1;
126 return Math.abs(x - touchDownX) < tapSquareSize && Math.abs(y - touchDownY) < tapSquareSize;
161 tapSquareSize = halfTapSquareSize;
165 return tapSquareSize;
DragAndDrop.java 41 private float tapSquareSize = 8;
148 listener.setTapSquareSize(tapSquareSize);
177 tapSquareSize = halfTapSquareSize;
  /external/libgdx/gdx/src/com/badlogic/gdx/input/
GestureDetector.java 32 private float tapSquareSize;
77 this.tapSquareSize = halfTapSquareSize;
255 return Math.abs(x - centerX) < tapSquareSize && Math.abs(y - centerY) < tapSquareSize;
264 this.tapSquareSize = halfTapSquareSize;

Completed in 1385 milliseconds