Click or drag to resize

AnimationTreeAnimationProcessMode Enumeration

[Missing <summary> documentation for "T:Godot.AnimationTree.AnimationProcessMode"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum AnimationProcessMode
Members
  Member nameValueDescription
Physics0

The animations will progress during the physics frame (i.e. _PhysicsProcess(Single)).

Idle1

The animations will progress during the idle frame (i.e. _Process(Single)).

Manual2

The animations will only progress manually (see Advance(Single)).

See Also