Skip to content

Commit

Permalink
Fix Animation tracks disabled by default
Browse files Browse the repository at this point in the history
Was a regression from #45845.
  • Loading branch information
akien-mga committed Mar 2, 2021
1 parent 8fbe644 commit f49433c
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 f49433c

Please sign in to comment.