Explorar el Código

removed uneccesary comparator

soekmego hace 6 años
padre
commit
5c8b62b8af
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tutorials/3d/fps_tutorial/part_two.rst

+ 1 - 1
tutorials/3d/fps_tutorial/part_two.rst

@@ -89,7 +89,7 @@ Add the following code to ``AnimationPlayer_Manager.gd``:
             return true
 
 
-        if has_animation(animation_name) == true:
+        if has_animation(animation_name):
             if current_state != null:
                 var possible_animations = states[current_state]
                 if animation_name in possible_animations: