Skip to content

Commit

Permalink
Merge pull request #46585 from akien-mga/fix-animation-track-enabled
Browse files Browse the repository at this point in the history
Fix Animation tracks disabled by default
  • Loading branch information
akien-mga authored Mar 2, 2021
2 parents 8fbe644 + f49433c commit 0862b29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/resources/animation.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Animation : public Resource {
bool loop_wrap = true;
NodePath path; // path to something
bool imported = false;
bool enabled = false;
bool enabled = true;
Track() {}
virtual ~Track() {}
};
Expand Down

0 comments on commit 0862b29

Please sign in to comment.