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
commit 94d3bcbc9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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