From d0ae2e2be50dda19a025b93a1eb8da4efd723832 Mon Sep 17 00:00:00 2001 From: hpnrep6 <57055412+hpnrep6@users.noreply.github.com> Date: Mon, 21 Jun 2021 10:59:30 -0400 Subject: [PATCH] Add missing C# example semicolon in Using AnimationTree (#5029) --- tutorials/animation/animation_tree.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/animation/animation_tree.rst b/tutorials/animation/animation_tree.rst index c7349ff66..7eb947154 100644 --- a/tutorials/animation/animation_tree.rst +++ b/tutorials/animation/animation_tree.rst @@ -283,7 +283,7 @@ Once retrieved, it can be used by calling one of the many functions it offers: .. code-tab:: csharp - stateMachine.Travel("SomeState") + stateMachine.Travel("SomeState"); The state machine must be running before you can travel. Make sure to either call ``start()`` or choose a node to **Autoplay on Load**.