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 = 0
Uses the Unity's Update method with Time.deltaTime
SmoothUpdate = 1
Uses the Unity's Update method with Time.smoothDeltaTime
UnscaledUpdate = 2
Uses the Unity's Update method with Time.unscaledDeltaTime
LateUpdate = 3
Uses the Unity's LateUpdate method with Time.deltaTime
SmoothLateUpdate = 4
Uses the Unity's LateUpdate method with Time.smoothDeltaTime
UnscaledLateUpdate = 5
Uses the Unity's LateUpdate method with Time.unscaledDeltaTime
FixedUpdate = 6
Uses the Unity's FixedUpdate method with Time.fixedDeltaTime
Custom = 7
Uses the FlowEnt's custom method. In order to use this you need to invoke CustomUpdate(float) from your custom update loop.