Browse Source

Merge pull request #35452 from nekomatata/tween-start-fail

Fixed Tween::start() with pending updates
Rémi Verschelde 5 years ago
parent
commit
94d3bcbc9b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      scene/animation/tween.cpp

+ 1 - 0
scene/animation/tween.cpp

@@ -827,6 +827,7 @@ bool Tween::start() {
 	// Are there any pending updates?
 	if (pending_update != 0) {
 		// Start the tweens after deferring
+		call_deferred("start");
 		return true;
 	}