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

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
InputListener.java 37 static private final Vector2 tmpCoords = new Vector2();
52 event.toCoordinates(event.getListenerActor(), tmpCoords);
56 return touchDown(event, tmpCoords.x, tmpCoords.y, event.getPointer(), event.getButton());
58 touchUp(event, tmpCoords.x, tmpCoords.y, event.getPointer(), event.getButton());
61 touchDragged(event, tmpCoords.x, tmpCoords.y, event.getPointer());
64 return mouseMoved(event, tmpCoords.x, tmpCoords.y);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
ActorGestureListener.java 32 static final Vector2 tmpCoords = new Vector2(), tmpCoords2 = new Vector2();
50 actor.stageToLocalCoordinates(tmpCoords.set(stageX, stageY));
51 ActorGestureListener.this.tap(event, tmpCoords.x, tmpCoords.y, count, button);
56 actor.stageToLocalCoordinates(tmpCoords.set(stageX, stageY));
57 return ActorGestureListener.this.longPress(actor, tmpCoords.x, tmpCoords.y);
61 stageToLocalAmount(tmpCoords.set(velocityX, velocityY));
62 ActorGestureListener.this.fling(event, tmpCoords.x, tmpCoords.y, button);
    [all...]

Completed in 228 milliseconds