diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-08-20 16:35:36 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-08-20 16:35:36 -0300 |
commit | 031f763d4fda4e0dbcdf90a170aad3124c50c062 (patch) | |
tree | 15f0b30c999d5ff3d3fced7480fc0e4c6598d26e /scene/animation | |
parent | c1bd768ca2d5fcd7c505b1af5e4de753799a3476 (diff) |
Crash fixes for material and animtree
Diffstat (limited to 'scene/animation')
-rw-r--r-- | scene/animation/animation_blend_tree.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/animation/animation_blend_tree.cpp b/scene/animation/animation_blend_tree.cpp index 31ee31745a..66a9c5babd 100644 --- a/scene/animation/animation_blend_tree.cpp +++ b/scene/animation/animation_blend_tree.cpp @@ -314,6 +314,11 @@ AnimationNodeOneShot::AnimationNodeOneShot() { mix = MIX_MODE_BLEND; sync = false; + + active = "active"; + prev_active = "prev_active"; + time = "time"; + remaining = "remaining"; } //////////////////////////////////////////////// |