Hi! In my game, I aim to have users click a button that switches them to a new card. This new card should only be displayed for three seconds before switching to a different card. In the meantime, I want the user to be able to interact and see the objects on this card. I've tried using sleep[]
in the card's script but this blocks user input and makes Field
(text) elements blurry until the sleep cycle is done. I have come across the eggtimer contraption (https://itch.io/post/7449415) and it seems very close to what I need to do (although on a click event), but I can't figure out how to adapt it and I've been trying for days. I would like the countdown to start as soon as the user navigates to the card and for the game to switch cards regardless of what the user may be doing. Does anyone have any advice?