Explorar el Código

Fix Animation tracks disabled by default

Was a regression from #45845.
Rémi Verschelde hace 4 años
padre
commit
f49433c91c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      scene/resources/animation.h

+ 1 - 1
scene/resources/animation.h

@@ -70,7 +70,7 @@ private:
 		bool loop_wrap = true;
 		NodePath path; // path to something
 		bool imported = false;
-		bool enabled = false;
+		bool enabled = true;
 		Track() {}
 		virtual ~Track() {}
 	};