|
|
__init__(self,
duration=0.5,
tween=None)
Tweener This class manages all active tweens, and provides a factory
for creating and spawning tween motions. |
source code
|
|
|
|
|
|
|
addTweenNoArgs(self,
obj,
function,
initial_value,
value,
**kwargs)
Similar a addTween, solo que se especifica la funcion y el valor de
forma explicita. |
source code
|
|
|
tweenObject or False
|
addTween(object,
**kwargs)
Example: tweener.addTween( myRocket, throttle=50, setThrust=400,
tweenTime=5.0, tweenType=tweener.OUT_QUAD ) |
source code
|
|
|
|
|
|
|
getTweensAffectingObject(self,
obj)
Get a list of all tweens acting on the specified object Useful for
manipulating tweens on the fly |
source code
|
|
|
|
removeTweeningFrom(self,
obj)
Stop tweening an object, without completing the motion or firing the
completeFunction |
source code
|
|
|
|
removeTweeningFromObjectField(self,
obj,
field)
Stop tweening an object, without completing the motion or firing the
completeFunction |
source code
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|