Browse Source

Fix Animation tracks disabled by default

Was a regression from #45845.
Rémi Verschelde 4 years ago
parent
commit
f49433c91c
1 changed files with 1 additions and 1 deletions
  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() {}
 	};