public abstract class RelativeTemporalAction extends TemporalAction
| Constructor and Description |
|---|
RelativeTemporalAction() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
begin()
Called the first time
TemporalAction.act(float) is called. |
protected void |
update(float percent)
Called each frame.
|
protected abstract void |
updateRelative(float percentDelta) |
act, end, finish, getDuration, getInterpolation, getTime, isReverse, reset, restart, setDuration, setInterpolation, setReverse, setTimeprotected void begin()
TemporalActionTemporalAction.act(float) is called. This is a good place to query the actor's starting
state.begin in class TemporalActionprotected void update(float percent)
TemporalActionupdate in class TemporalActionpercent - The percentage of completion for this action, growing from 0 to 1 over the duration. If
reversed, this will shrink from 1 to 0.protected abstract void updateRelative(float percentDelta)