From f49433c91cf9c15657277632c896ad0862dc65f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 2 Mar 2021 09:15:01 +0100 Subject: [PATCH] Fix Animation tracks disabled by default Was a regression from #45845. --- scene/resources/animation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/resources/animation.h b/scene/resources/animation.h index fd22cc445c29..66bc71c83453 100644 --- a/scene/resources/animation.h +++ b/scene/resources/animation.h @@ -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() {} };