Skip to content

Commit 1e8b7fe

Browse files
committed
Merge pull request godotengine#101582 from Flynsarmy/recursive_transition_wording
Improve wording on recursive transition detection warning
2 parents 2ddd9be + 3af934b commit 1e8b7fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scene/animation/animation_node_state_machine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,7 +911,7 @@ bool AnimationNodeStateMachinePlayback::_transition_to_next_recursive(AnimationT
911911
}
912912

913913
if (transition_path.has(next.node)) {
914-
WARN_PRINT_ONCE_ED("AnimationNodeStateMachinePlayback: " + base_path + "playback aborts the transition by detecting one or more looped transitions in the same frame to prevent to infinity loop. You may need to check the transition settings.");
914+
WARN_PRINT_ONCE_ED("AnimationNodeStateMachinePlayback: " + base_path + "playback has detected one or more looped transitions in a single frame and aborted to prevent an infinite loop. You may need to check the transition settings.");
915915
break; // Maybe infinity loop, do nothing more.
916916
}
917917

0 commit comments

Comments
 (0)