Hi, does anyone know why nothing is written in the text?
https://www.dropbox.com/s/8uc4mmxdn540pav/keyTest.capx?dl=0
Develop games in your browser. Powerful, performant & highly capable.
While loops run until the subsequent conditions are false, and the keyboard input is only updated once per tick. So as soon as you press the down arrow it probably hangs the game as it enters an infinite loop.
Ok, thanks for the info.