In my game I want the player to do it's down animation 2 seconds after I press the down button. I used the system time thing but it still didn't work.
Thank you for your time!
Develop games in your browser. Powerful, performant & highly capable.
Use Timer behavior. On key pressed - start the timer for 2 seconds. On Timer event - play the animation.
If the key needs to be held for 2 seconds, then also add this event: On Key Released - stop timer.