mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
previous value of time_left is added to wait_time before assigning to time_left
(cherry picked from commit ea4fbee8f2)
This commit is contained in:
committed by
Rémi Verschelde
parent
a67400aee7
commit
323041a476
@@ -66,8 +66,7 @@ void Timer::_notification(int p_what) {
|
||||
|
||||
if (time_left < 0) {
|
||||
if (!one_shot)
|
||||
//time_left = wait_time + time_left;
|
||||
time_left = wait_time;
|
||||
time_left = wait_time + time_left;
|
||||
else
|
||||
stop();
|
||||
emit_signal("timeout");
|
||||
|
||||
Reference in New Issue
Block a user