Is there a way to change the current "time_left" in a running timer node?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By javire

I just wanted to know if changing the current time left is a thing in Godot.

I change wait time while the timer is running in my code right now and it works just fine as far as I can tell. I don’t know if it’s ok or not but it works just fine.

Nickgenfailed | 2021-06-10 22:03

:bust_in_silhouette: Reply From: timothybrentwood

my_timer.start(desired_time_left)
adding 5 seconds to current timer: my_timer.start(my_timer.time_left + 5.0)