#Making a timer progress bar
7 messages · Page 1 of 1 (latest)
Hi, I'm not really a master at GD script but I think it's because you updating your progress bar with the process function, I recommend trying the timer.timeout signal to update the progress bar every second.
Thank you! I will try that 🙂
I think you want to move your print statement, and eventually updating the progress bar, to a process function instead of in the work at station pressed function.
oh interesting! why? Because the in_work_station_pressed gets called in the _process right?
It is called by process but you need to update the bar regardless of if you input. And you currently only call on_work_station_pressed if you get an input.
ahh that makes sense! Thank you 🙂