Click or drag to resize

AnimationPlayerAnimationMethodCallMode Enumeration

[Missing <summary> documentation for "T:Godot.AnimationPlayer.AnimationMethodCallMode"]

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

Batch method calls during the animation process, then do the calls after events are processed. This avoids bugs involving deleting nodes or modifying the AnimationPlayer while playing.

Immediate1

Make method calls immediately when reached in the animation.

See Also