Browse Source

Fixed uninitialized xfade in AnimationNodeTransition

(cherry picked from commit dafd7768ab08f212c8b86756def4201c381cbcbc)
PouleyKetchoupp 6 years ago
parent
commit
a028160522
1 changed files with 1 additions and 0 deletions
  1. 1 0
      scene/animation/animation_blend_tree.cpp

+ 1 - 0
scene/animation/animation_blend_tree.cpp

@@ -857,6 +857,7 @@ AnimationNodeTransition::AnimationNodeTransition() {
 	time = "time";
 	current = "current";
 	prev_current = "prev_current";
+	xfade = 0.0;
 
 	enabled_inputs = 0;
 	for (int i = 0; i < MAX_INPUTS; i++) {