Browse Source

Fix missing semicolon in C# code sample in Exporting tutorial (#3778)

Player.cs code (c#) won't compile because of a missing simicolon.
Mathias 5 years ago
parent
commit
1f35af0f2f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/step_by_step/exporting.rst

+ 1 - 1
getting_started/step_by_step/exporting.rst

@@ -170,7 +170,7 @@ changed:
             // Move towards the target and stop when close.
             if (Position.DistanceTo(_target) > 10)
             {
-                velocity = _target - Position
+                velocity = _target - Position;
             }
 
             // Remove keyboard controls.