HomeSort by relevance Sort by last modified time
    Searched defs:touchDragged (Results 26 - 35 of 35) sorted by null

12

  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Box2DTest.java 377 public boolean touchDragged (int x, int y, int pointer) {
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
TextField.java 792 public void touchDragged (InputEvent event, float x, float y, int pointer) {
793 super.touchDragged(event, x, y, pointer);
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglAWTInput.java 358 processor.touchDragged(e.x, e.y, e.pointer);
LwjglInput.java 335 processor.touchDragged(e.x, e.y, e.pointer);
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSInput.java 554 if (inputProcessor != null) inputProcessor.touchDragged(event.x, event.y, event.pointer);
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSInput.java 621 if (inputProcessor != null) inputProcessor.touchDragged(event.x, event.y, event.pointer);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
ParticleEditor.java 484 public boolean touchDragged (int x, int y, int pointer) {
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Stage.java 292 public boolean touchDragged (int screenX, int screenY, int pointer) {
303 event.setType(Type.touchDragged);
451 /** Adds the listener to be notified for all touchDragged and touchUp events for the specified pointer and button. The actor
463 /** Removes the listener from being notified for all touchDragged and touchUp events for the specified pointer and button. Note
499 // Cannot return TouchFocus to pool, as it may still be in use (eg if cancelTouchFocus is called from touchDragged).
506 /** Sends a touchUp event to all listeners that are registered to receive touchDragged and touchUp events and removes their
536 // Cannot return TouchFocus to pool, as it may still be in use (eg if cancelTouchFocus is called from touchDragged).
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidInput.java 382 processor.touchDragged(e.x, e.y, e.pointer);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtInput.java 542 processor.touchDragged(touchX[0], touchY[0], 0);
645 processor.touchDragged(touchX[touchId], touchY[touchId], touchId);

Completed in 231 milliseconds

12