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

Fixed Tween::start() with pending updates
This commit is contained in:
Rémi Verschelde
2020-01-22 22:56:40 +01:00
committed by GitHub

View File

@@ -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;
}