How can I perform a process after a certain period of time, similar to setTimeout?
When tapped, the sequence advances automatically. I want to control it with a few seconds delay.
Develop games in your browser. Powerful, performant & highly capable.
You can use System Wait action or Timer behavior. I recommend Timer in this case because you can stop/cancel/restart it if the player taps several times.
What is Wait Action.
I could not seem to find "Wait" in the System condition.
Wait is an action, not a condition. You'd put it where you have the sleep right now. Wait can be a bit tricky to get right for various reasons, which is why timers are usually recommendet.