public abstract class DelegateAction extends Action
Constructor and Description |
---|
DelegateAction() |
Modifier and Type | Method and Description |
---|---|
boolean |
act(float delta)
Updates the action based on time.
|
protected abstract boolean |
delegate(float delta) |
Action |
getAction() |
void |
reset()
Resets the optional state of this action to as if it were newly created, allowing the action to be pooled and reused.
|
void |
restart()
Sets the state of the action so it can be run again.
|
void |
setAction(Action action)
Sets the wrapped action.
|
void |
setActor(Actor actor)
Sets the actor this action is attached to.
|
void |
setTarget(Actor target)
Sets the actor this action will manipulate.
|
java.lang.String |
toString() |
protected Action action
public void setAction(Action action)
public Action getAction()
protected abstract boolean delegate(float delta)
public final boolean act(float delta)
Action
Actor.act(float)
.public void restart()
Action
public void reset()
Action
The default implementation calls Action.restart()
.
If a subclass has optional state, it must override this method, call super, and reset the optional state.
reset
in interface Pool.Poolable
reset
in class Action
public void setActor(Actor actor)
Action
target
actor if it is null. This
method is called automatically when an action is added to an actor. This method is also called with null when an action is
removed from an actor.
When set to null, if the action has a pool
then the action is returned
to
the pool (which calls Action.reset()
) and the pool is set to null. If the action does not have a pool, Action.reset()
is
not called.
This method is not typically a good place for an action subclass to query the actor's state because the action may not be
executed for some time, eg it may be delayed
. The actor's state is best queried in the first call to
Action.act(float)
. For a TemporalAction
, use TemporalAction#begin().
public void setTarget(Actor target)
Action
Action.setActor(Actor)
will set the target actor
when the action is added to an actor.