OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ActorGestureListener
(Results
1 - 4
of
4
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
ActorGestureListener.java
31
public class
ActorGestureListener
implements EventListener {
39
public
ActorGestureListener
() {
44
public
ActorGestureListener
(float halfTapSquareSize, float tapCountInterval, float longPressDuration, float maxFlingDelay) {
51
ActorGestureListener
.this.tap(event, tmpCoords.x, tmpCoords.y, count, button);
57
return
ActorGestureListener
.this.longPress(actor, tmpCoords.x, tmpCoords.y);
62
ActorGestureListener
.this.fling(event, tmpCoords.x, tmpCoords.y, button);
71
ActorGestureListener
.this.pan(event, tmpCoords.x, tmpCoords.y, deltaX, deltaY);
76
ActorGestureListener
.this.zoom(event, initialDistance, distance);
86
ActorGestureListener
.this.pinch(event, initialPointer1, initialPointer2, pointer1, pointer2);
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Scene2dTest.java
43
import com.badlogic.gdx.scenes.scene2d.utils.
ActorGestureListener
;
110
button.addListener(new
ActorGestureListener
() {
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
ScrollPane.java
32
import com.badlogic.gdx.scenes.scene2d.utils.
ActorGestureListener
;
58
private
ActorGestureListener
flickScrollListener;
183
flickScrollListener = new
ActorGestureListener
() {
[
all
...]
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Actor.java
30
import com.badlogic.gdx.scenes.scene2d.utils.
ActorGestureListener
;
52
* {@link
ActorGestureListener
}) can listen for and combine primitive events and recognize complex interactions like multi-touch
Completed in 777 milliseconds