Browse Source

Merge pull request #46585 from akien-mga/fix-animation-track-enabled

Fix Animation tracks disabled by default
Rémi Verschelde 4 years ago
parent
commit
0862b29260
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;
 		bool loop_wrap = true;
 		NodePath path; // path to something
 		NodePath path; // path to something
 		bool imported = false;
 		bool imported = false;
-		bool enabled = false;
+		bool enabled = true;
 		Track() {}
 		Track() {}
 		virtual ~Track() {}
 		virtual ~Track() {}
 	};
 	};