summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-03-02 10:12:09 +0100
committerGitHub <noreply@github.com>2021-03-02 10:12:09 +0100
commit0862b2926076790fb771e2d8322ea254e972c285 (patch)
tree20cef5dcb93ac372e305d7f75e92b9ac17105a81
parent8fbe644b6e6548dc2c9f9d675bc17f13b74e747b (diff)
parentf49433c91cf9c15657277632c896ad0862dc65f5 (diff)
Merge pull request #46585 from akien-mga/fix-animation-track-enabled
Fix Animation tracks disabled by default
-rw-r--r--scene/resources/animation.h2
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() {}
};