From ded85ebb9441342cbcfd08bfd08cbb40163173e5 Mon Sep 17 00:00:00 2001 From: Kyle Starr Date: Sun, 7 Jan 2024 13:59:26 -0800 Subject: [PATCH] Update getting_started/step_by_step/scripting_player_input.rst Removing unnecessary spaces in C# comments Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> --- getting_started/step_by_step/scripting_player_input.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting_started/step_by_step/scripting_player_input.rst b/getting_started/step_by_step/scripting_player_input.rst index 704ab2bec..d72ecd6de 100644 --- a/getting_started/step_by_step/scripting_player_input.rst +++ b/getting_started/step_by_step/scripting_player_input.rst @@ -91,9 +91,9 @@ Comment out the lines ``var velocity = Vector2.UP.rotated(rotation) * speed`` an .. code-tab:: csharp C# - // var velocity = Vector2.Up.Rotated(Rotation) * _speed; + //var velocity = Vector2.Up.Rotated(Rotation) * _speed; - // Position += velocity * (float)delta; + //Position += velocity * (float)delta; This will ignore the code that moved the icon's position in a circles without user input from the previous exercise.