Enum UpdateFrom
- Namespace
- TMPEffects.Components.Animator
- Assembly
- TMPEffects.dll
To be used with TMPAnimator's SetUpdateFrom(UpdateFrom) method.
Defines where the TMPAnimator is updated from.
[Serializable]
public enum UpdateFrom
Fields
FixedUpdate = 10
TMPAnimator is updated in the FixedUpdate method.
LateUpdate = 5
TMPAnimator is updated in the LateUpdate method.
Script = 15
TMPAnimator is not automatically updated; you will need to update it from your own script.
Update = 0
TMPAnimator is updated in the Update method.