You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-04 19:21:46 +00:00
Merge pull request #57353 from KoBeWi/tween_stop()
This commit is contained in:
@@ -249,8 +249,6 @@ bool Tween::custom_step(float p_delta) {
|
||||
}
|
||||
|
||||
bool Tween::step(float p_delta) {
|
||||
ERR_FAIL_COND_V_MSG(tweeners.is_empty(), false, "Tween started, but has no Tweeners.");
|
||||
|
||||
if (dead) {
|
||||
return false;
|
||||
}
|
||||
@@ -271,6 +269,7 @@ bool Tween::step(float p_delta) {
|
||||
}
|
||||
|
||||
if (!started) {
|
||||
ERR_FAIL_COND_V_MSG(tweeners.is_empty(), false, "Tween started, but has no Tweeners.");
|
||||
current_step = 0;
|
||||
loops_done = 0;
|
||||
start_tweeners();
|
||||
|
||||
Reference in New Issue
Block a user