Merge pull request #46585 from akien-mga/fix-animation-track-enabled

Fix Animation tracks disabled by default
This commit is contained in:
Rémi Verschelde 2021-03-02 10:12:09 +01:00 committed by GitHub
commit 0862b29260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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() {}
};