MCPcopy
hub / github.com/libgdx/libgdx / TouchFocus

Class TouchFocus

gdx/src/com/badlogic/gdx/scenes/scene2d/Stage.java:885–895  ·  view source on GitHub ↗

Internal class for managing touch focus. Public only for GWT. @author Nathan Sweet

Source from the content-addressed store, hash-verified

883 /** Internal class for managing touch focus. Public only for GWT.
884 * @author Nathan Sweet */
885 public static final class TouchFocus implements Poolable {
886 EventListener listener;
887 Actor listenerActor, target;
888 int pointer, button;
889
890 public void reset () {
891 listenerActor = null;
892 listener = null;
893 target = null;
894 }
895 }
896}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected