Trees | Indices | Toggle frames |
---|
Action --+ | IntervalAction --+ | InstantAction
__add__(self,
action)
sequence operator - concatenates actions
action1 + action2 -> action_result
where action_result performs as:
first do all that action1 would do; then
perform all that action2 would do
(Inherited from cocos.actions.base_actions.Action)
|
|
__init__(self,
*args,
**kwargs)
dont override - use init
|
|
__mul__(self, other) | |
__or__(self,
action)
spawn operator - runs two actions in parallel
action1 | action2 -> action_result
(Inherited from cocos.actions.base_actions.Action)
|
|
__reversed__(self) (Inherited from cocos.actions.base_actions.Action) | |
done(self)
When in the worker role, this method is reliable.
|
|
init(*args,
**kwargs)
Gets called by __init__ with all the parameteres received,
At this time the target for the action is unknown.
(Inherited from cocos.actions.base_actions.Action)
|
|
start(self)
Here we must do out stuff
|
|
step(self,
dt)
does nothing - dont override
|
|
stop(self)
does nothing - dont override
|
|
update(self,
t)
does nothing - dont override
|
target
CocosNode object that is the target of the action
(Inherited from cocos.actions.base_actions.Action)
|
Trees | Indices | Toggle frames |
---|
Generated by Epydoc 3.0beta1 on Wed Jul 07 22:46:48 2010 | http://epydoc.sourceforge.net |