Преглед на файлове

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

hpnrep6 преди 4 години
родител
ревизия
d0ae2e2be5
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      tutorials/animation/animation_tree.rst

+ 1 - 1
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**.