|
__init__(self,
obj,
tduration,
tweenType,
completeFunction,
updateFunction,
delay,
**kwargs)
Tween object: Can be created directly, but much more easily using
Tweener.addTween( ... |
source code
|
|
|
decodeArguments(self)
Internal setup procedure to create tweenables and work out how to
deal with each |
source code
|
|
|
pause(self,
numSeconds=-1)
Pause this tween do tween.pause( 2 ) to pause for a specific time or
tween.pause() which pauses indefinitely. |
source code
|
|
|
|
|
update(self,
ptime)
Update this tween with the time since the last frame if there is an
update function, it is always called whether the tween is running or
paused |
source code
|
|
|
getTweenable(self,
name)
Return the tweenable values corresponding to the name of the original
tweening function or property. |
source code
|
|
|
Remove(self)
Disables and removes this tween without calling the complete function |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|