HomeSort by relevance Sort by last modified time
    Searched defs:setActor (Results 1 - 11 of 11) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Action.java 55 public void setActor (Actor actor) {
71 /** Sets the actor this action will manipulate. If no target actor is set, {@link #setActor(Actor)} will set the target actor
101 * @see #setActor(Actor) */
Actor.java 100 action.setActor(null);
258 action.setActor(this);
265 if (actions.removeValue(action, true)) action.setActor(null);
280 actions.get(i).setActor(null);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
DelegateAction.java 58 public void setActor (Actor actor) {
59 if (action != null) action.setActor(actor);
60 super.setActor(actor);
ParallelAction.java 95 if (actor != null) action.setActor(actor);
98 public void setActor (Actor actor) {
101 actions.get(i).setActor(actor);
102 super.setActor(actor);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Tooltip.java 63 public void setActor (T contents) {
64 container.setActor(contents);
List.java 60 selection.setActor(this);
Container.java 37 setActor(actor);
154 public void setActor (T actor) {
168 * @see #setActor(Actor) */
170 throw new UnsupportedOperationException("Use Container#setActor.");
174 * @see #setActor(Actor) */
176 throw new UnsupportedOperationException("Use Container#setActor.");
180 * @see #setActor(Actor) */
182 throw new UnsupportedOperationException("Use Container#setActor.");
186 * @see #setActor(Actor) */
188 throw new UnsupportedOperationException("Use Container#setActor.")
    [all...]
Cell.java 52 public <A extends Actor> Cell<A> setActor (A newActor) {
63 setActor(null);
SelectBox.java 82 selection.setActor(this);
Tree.java 59 selection.setActor(this);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
Selection.java 27 public void setActor (Actor actor) {

Completed in 365 milliseconds