diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-03-02 10:12:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-02 10:12:09 +0100 |
commit | 0862b2926076790fb771e2d8322ea254e972c285 (patch) | |
tree | 20cef5dcb93ac372e305d7f75e92b9ac17105a81 | |
parent | 8fbe644b6e6548dc2c9f9d675bc17f13b74e747b (diff) | |
parent | f49433c91cf9c15657277632c896ad0862dc65f5 (diff) |
Merge pull request #46585 from akien-mga/fix-animation-track-enabled
Fix Animation tracks disabled by default
-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() {} }; |