Enum AnimatedModel.AnimationUpdateMode
Describes the animation graph updates frequency for the animated model.
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public enum AnimationUpdateMode
Fields
Name | Description |
---|---|
Auto | The automatic updates will be used (based on platform capabilities, distance to the player, etc.). |
EveryFourthUpdate | Animation will be updated every fourth game update. |
EverySecondUpdate | Animation will be updated every second game update. |
EveryUpdate | Animation will be updated every game update. |
Manual | Animation can be updated manually by the user scripts. |
Never | Animation won't be updated at all. |