Property | Type | Description | |
---|---|---|---|
cacheColorTweens | bool | ||
cacheFloatTweens | bool | ||
cacheIntTweens | bool | ||
cacheQuaternionTweens | bool | ||
cacheRectTweens | bool | ||
cacheVector2Tweens | bool | ||
cacheVector3Tweens | bool | ||
cacheVector4Tweens | bool | ||
defaultEaseType | EaseType | ||
removeAllTweensOnLevelLoad | bool |
Method | Description | |
---|---|---|
TweenManager ( ) : System.Collections.Generic | ||
addTween ( ITweenable tween ) : void |
adds a tween to the active tweens list
|
|
allTweensWithContext ( object context ) : List |
returns all the tweens that have a specific context. Tweens are returned as ITweenable since that is all that TweenManager knows about.
|
|
allTweensWithTarget ( object target ) : List |
returns all the tweens that have a specific target. Tweens are returned as ITweenControl since that is all that TweenManager knows about.
|
|
removeTween ( ITweenable tween ) : void |
removes a tween from the active tweens list
|
|
stopAllTweens ( bool bringToCompletion = false ) : void |
stops all tweens optionlly bringing them all to completion
|
|
stopAllTweensWithContext ( object context, bool bringToCompletion = false ) : void |
stops all the tweens with a given context
|
|
stopAllTweensWithTarget ( object target, bool bringToCompletion = false ) : void |
stops all the tweens that have a specific target that TweenManager knows about.
|
Method | Description | |
---|---|---|
IUpdatableManager ( ) : void |
public TweenManager ( ) : System.Collections.Generic | ||
return | System.Collections.Generic |
public static addTween ( ITweenable tween ) : void | ||
tween | ITweenable | Tween. |
return | void |
public static allTweensWithContext ( object context ) : List |
||
context | object | Context. |
return | List |
public static allTweensWithTarget ( object target ) : List |
||
target | object | target. |
return | List |
public static removeTween ( ITweenable tween ) : void | ||
tween | ITweenable | Tween. |
return | void |
public static stopAllTweens ( bool bringToCompletion = false ) : void | ||
bringToCompletion | bool | If set to |
return | void |
public static stopAllTweensWithContext ( object context, bool bringToCompletion = false ) : void | ||
context | object | Context. |
bringToCompletion | bool | |
return | void |
public static stopAllTweensWithTarget ( object target, bool bringToCompletion = false ) : void | ||
target | object | target. |
bringToCompletion | bool | |
return | void |
public static bool cacheQuaternionTweens | ||
return | bool |