https://docs.godotengine.org/en/latest/tutorials/animation/animation_tree.html Turn on auto advance when this condition is set. The provided name will become a boolean parameter on the [AnimationTree] that can be controlled from code (see [url=https://docs.godotengine.org/en/latest/tutorials/animation/animation_tree.html#controlling-from-code][/url]). For example, if [member AnimationTree.tree_root] is an [AnimationNodeStateMachine] and [member advance_condition] is set to [code]"idle"[/code]: [codeblocks] [gdscript] $animation_tree.set("parameters/conditions/idle", is_on_floor and (linear_velocity.x == 0)) [/gdscript] [csharp] GetNode<AnimationTree>("animation_tree").Set("parameters/conditions/idle", IsOnFloor && (LinearVelocity.x == 0)); [/csharp] [/codeblocks] Turn on the transition automatically when this state is reached. This works best with [constant SWITCH_MODE_AT_END]. Don't use this transition during [method AnimationNodeStateMachinePlayback.travel] or [member auto_advance]. Lower priority transitions are preferred when travelling through the tree via [method AnimationNodeStateMachinePlayback.travel] or [member auto_advance]. The transition type. The time to cross-fade between this state and the next. Emitted when [member advance_condition] is changed. Switch to the next state immediately. The current state will end and blend into the beginning of the new one. Switch to the next state immediately, but will seek the new state to the playback position of the old state. Wait for the current state playback to end, then switch to the beginning of the next state animation.