Browse Source

Remove, '#' from line 194. Line 194 if statement was commented out.

Element894 2 years ago
parent
commit
10df3c01ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      getting_started/first_3d_game/09.adding_animations.rst

+ 1 - 1
getting_started/first_3d_game/09.adding_animations.rst

@@ -191,7 +191,7 @@ vector, add the following code.
 
 
    func _physics_process(delta):
    func _physics_process(delta):
        #...
        #...
-       #if direction != Vector3.ZERO:
+       if direction != Vector3.ZERO:
            #...
            #...
            $AnimationPlayer.playback_speed = 4
            $AnimationPlayer.playback_speed = 4
        else:
        else: