diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-03-02 09:15:01 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-03-02 09:15:01 +0100 |
commit | f49433c91cf9c15657277632c896ad0862dc65f5 (patch) | |
tree | 20cef5dcb93ac372e305d7f75e92b9ac17105a81 | |
parent | 8fbe644b6e6548dc2c9f9d675bc17f13b74e747b (diff) |
Fix Animation tracks disabled by default
Was a regression from #45845.
-rw-r--r-- | scene/resources/animation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/animation.h b/scene/resources/animation.h index fd22cc445c..66bc71c834 100644 --- a/scene/resources/animation.h +++ b/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() {} }; |