From 3cadc6d91fe0fbdf1d0ab305f39efc89014fa577 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 15 Nov 2021 15:14:59 +0100 Subject: [PATCH] Fix missing space after period in Using AnimationTree --- tutorials/animation/animation_tree.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tutorials/animation/animation_tree.rst b/tutorials/animation/animation_tree.rst index fa5ce0a8a..02f1cfb9f 100644 --- a/tutorials/animation/animation_tree.rst +++ b/tutorials/animation/animation_tree.rst @@ -259,7 +259,8 @@ State machine travel -------------------- One of the nice features in Godot's ``StateMachine`` implementation is the ability to travel. The graph can be instructed to go from the -current state to another one, while visiting all the intermediate ones. This is done via the A\* algorithm.In the absence of any transition between the current state and the destination state, the graph teleports to the destination state. +current state to another one, while visiting all the intermediate ones. This is done via the A\* algorithm. +In the absence of any transition between the current state and the destination state, the graph teleports to the destination state. To use the travel ability, you should first retrieve the :ref:`AnimationNodeStateMachinePlayback ` object from the ``AnimationTree`` node (it is exported as a property).