| Method | Defined By | ||
|---|---|---|---|
[static]
Adds a tween to be managed by GTweener. | GTweener | ||
from(target:Object = null, duration:Number = 1, values:Object = null, props:Object = null, pluginData:Object = null):GTween [static]
Tweens the target from the specified values to its current values. | GTweener | ||
[static]
Gets the tween that is actively tweening the specified property of the target, or null
if none. | GTweener | ||
getTweens(target:Object):Array [static]
Returns an array of all tweens that GTweener is managing for the specified target. | GTweener | ||
pauseTweens(target:Object, paused:Boolean = true):void [static]
Pauses all tweens that GTweener is managing for the specified target. | GTweener | ||
[static]
Removes a tween from being managed by GTweener. | GTweener | ||
removeTweens(target:Object):void [static]
Removes all tweens that GTweener is managing for the specified target. | GTweener | ||
resumeTweens(target:Object):void [static]
Resumes all tweens that GTweener is managing for the specified target. | GTweener | ||
to(target:Object = null, duration:Number = 1, values:Object = null, props:Object = null, pluginData:Object = null):GTween [static]
Tweens the target to the specified values. | GTweener | ||
| add | () | method |
public static function add(tween:GTween):voidAdds a tween to be managed by GTweener.
Parameters
tween:GTween |
| from | () | method |
public static function from(target:Object = null, duration:Number = 1, values:Object = null, props:Object = null, pluginData:Object = null):GTweenTweens the target from the specified values to its current values.
Parameters
target:Object (default = null) | |
duration:Number (default = 1) | |
values:Object (default = null) | |
props:Object (default = null) | |
pluginData:Object (default = null) |
GTween |
| getTween | () | method |
public static function getTween(target:Object, name:String):GTweenGets the tween that is actively tweening the specified property of the target, or null if none.
Parameters
target:Object | |
name:String |
GTween |
| getTweens | () | method |
public static function getTweens(target:Object):ArrayReturns an array of all tweens that GTweener is managing for the specified target.
Parameters
target:Object |
Array |
| pauseTweens | () | method |
public static function pauseTweens(target:Object, paused:Boolean = true):voidPauses all tweens that GTweener is managing for the specified target.
Parameters
target:Object | |
paused:Boolean (default = true) |
| remove | () | method |
public static function remove(tween:GTween):voidRemoves a tween from being managed by GTweener.
Parameters
tween:GTween |
| removeTweens | () | method |
public static function removeTweens(target:Object):voidRemoves all tweens that GTweener is managing for the specified target.
Parameters
target:Object |
| resumeTweens | () | method |
public static function resumeTweens(target:Object):voidResumes all tweens that GTweener is managing for the specified target.
Parameters
target:Object |
| to | () | method |
public static function to(target:Object = null, duration:Number = 1, values:Object = null, props:Object = null, pluginData:Object = null):GTweenTweens the target to the specified values.
Parameters
target:Object (default = null) | |
duration:Number (default = 1) | |
values:Object (default = null) | |
props:Object (default = null) | |
pluginData:Object (default = null) |
GTween |