Fix Animation tracks disabled by default

Was a regression from #45845.
This commit is contained in:
Rémi Verschelde 2021-03-02 09:15:01 +01:00
parent 8fbe644b6e
commit f49433c91c
1 changed files with 1 additions and 1 deletions

View File

@ -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() {}
};