How do I create a progress bar that decrease every 30 seconds?

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

I tried using Timer node, but it seems like it doesn’t work.

:bust_in_silhouette: Reply From: kidscancode

You didn’t include anything about what you tried or what “doesn’t work”. The Timer’s timeout signal is probably what you want.

Make a scene with a Timer and a ProgressBar. Add a script and connect the Timer’s timeout signal. Here’s a snippet that takes a ProgressBar and counts it down a second at a time:

func _on_Timer_timeout():
    if $ProgressBar.value > 0:
        $ProgressBar.value -= 1

The Timer’s “Wait Time” is set to 1 s
The ProgressBar’s “Min/Max” are set to 0/30, and its “Value” is 30.

Thanks. It works now.

ExiledBeast | 2018-03-06 02:51