| Trees | Indices | Toggle frames |
|---|
Base actions
These actions are the 'mother' of all actions. They are the building blocks.
|
Action
Mother of all actions
|
|
|
IntervalAction
IntervalAction()
|
|
|
InstantAction
Instant actions are actions that happen just one call.
|
|
|
Sequence
Run actions sequentially: One after another
You can sequence actions using:
|
|
|
Spawn
Spawn a new action immediately.
|
|
|
Repeat
Repeats an action forever.
|
|
|
_ReverseTime
Executes an action in reverse order, from time=duration to time=0
|
|
Reverse(action)
Reverses the behavior of the action
|
Reverses the behavior of the action
Example:
# rotates the sprite 180 degrees in 2 seconds counter clockwise
action = Reverse( RotateBy( 180, 2 ) )
sprite.do( action )
| Trees | Indices | Toggle frames |
|---|
| Generated by Epydoc 3.0beta1 on Sat Sep 6 13:21:10 2008 | http://epydoc.sourceforge.net |