Basically I want my touch buttons for mobile to be the same as the keyboard buttons. I have a triple jump setup and it works perfectly fine with the up arrow key but when I change the condition from "up arrow key pressed" to "is touching jump button" it doesnt seem to work the same. In order to triple jump I have to push the button 3 times super fast. I was wondering why this could be happening or if there is a way to make the touchscreen button simulate the up key being pressed (simulate platform jumping doesn't work) I'm very new to this so I hope I explained it good enough lol.
"up arrow key pressed" is similar with "on touched button"
"is touching jump button" will be "on arrow key down" and it needs longer touch.
Develop games in your browser. Powerful, performant & highly capable.
Awesome thank you so much! You have saved me from a lot of stress and frustration, it works perfectly now.
General rule - "On ..." events are triggered once. "Is ..." events are continuous, they run on every tick, while the condition is true.