Enum TweenState
States of a tween.
Namespace: Sttz.Tweener
Assembly: cs.temp.dll.dll
Syntax
public enum TweenState
Fields
Name | Description |
---|---|
Complete | The tween has completed, either normally or by being stopped, finished or cancelled. |
Error | The tween has encountered an error. See Error for the error message. |
Tweening | The tween is currently animating. |
Uninitialized | A not yet initialized tweens. The tween has been set up with its parameters but not yet initialized. Tweens are initialized during the next frame after their creation or by calling Validate(Boolean). |
Unused | The tween has not yet been set up using it's Use(TweenMethod, TTarget, Single, String, TValue, TValue, TValue, TweenOptions) method. You should only see tweens in this state if you create an instance or load one from the TweenPool. Usually, you want to use the methods on Animate, TweenGroup or Tween to create instances. |
Waiting | The tween is waiting to start, e.g. because StartDelay has been set. |