Browse Source

Remove duplicate C# comment from GDscript codeblock

Levelleor 2 years ago
parent
commit
18ab91b111
1 changed files with 0 additions and 1 deletions
  1. 0 1
      getting_started/first_3d_game/06.jump_and_squash.rst

+ 0 - 1
getting_started/first_3d_game/06.jump_and_squash.rst

@@ -237,7 +237,6 @@ With this code, if no collisions occurred on a given frame, the loop won't run.
         #...
         #...
 
 
         # Iterate through all collisions that occurred this frame
         # Iterate through all collisions that occurred this frame
-        # in C this would be for(int i = 0; i < collisions.Count; i++)
         for index in range(get_slide_collision_count()):
         for index in range(get_slide_collision_count()):
             # We get one of the collisions with the player
             # We get one of the collisions with the player
             var collision = get_slide_collision(index)
             var collision = get_slide_collision(index)