Add missing C# example semicolon in Using AnimationTree (#5029)

This commit is contained in:
hpnrep6
2021-06-21 10:59:30 -04:00
committed by Hugo Locurcio
parent 0d99c1f3c1
commit 48a6f60369

View File

@@ -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**.