So, no Timer
node? Yeah, you can do it without a timer node. Really, you just need a way to keep track of the 1 second
delay. You could do that by tracking it yourself in (for example) the _process()
function.
Just add the delta
value to a running accumulator until it reaches your limit (1 second)...
While somewhat more difficult than a simple timer, it would work just as well...