Enum UpdateType
- Namespace
- FriedSynapse.FlowEnt
Enum used to select which type of update the animation should hook into
public enum UpdateType
- Extension Methods
Fields
Update = 0Uses the Unity's Update method with Time.deltaTime
SmoothUpdate = 1Uses the Unity's Update method with Time.smoothDeltaTime
UnscaledUpdate = 2Uses the Unity's Update method with Time.unscaledDeltaTime
LateUpdate = 3Uses the Unity's LateUpdate method with Time.deltaTime
SmoothLateUpdate = 4Uses the Unity's LateUpdate method with Time.smoothDeltaTime
UnscaledLateUpdate = 5Uses the Unity's LateUpdate method with Time.unscaledDeltaTime
FixedUpdate = 6Uses the Unity's FixedUpdate method with Time.fixedDeltaTime
Custom = 7Uses the FlowEnt's custom method. In order to use this you need to invoke CustomUpdate(float) from your custom update loop.