Преглед изворни кода

Fix Animation tracks disabled by default

Was a regression from #45845.
Rémi Verschelde пре 4 година
родитељ
комит
f49433c91c
1 измењених фајлова са 1 додато и 1 уклоњено
  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() {}
 	};