← Return to game
Log in with itch.io to leave a comment.
Nice game - I tried to use the arrow keys for controls, but found I needed to rotate the keyboard. Perhaps consider the mapping:
Specifically, the code changes are:
v0 := OCTO_KEY_Dif v0 key then px += 1
if px == 64then :call moveplayer
v0 := OCTO_KEY_Wif v0 key then py -= 1
v0 := OCTO_KEY_Sif v0 key then py += 1
...
I considered that, but decided I wanted to have the controls be from the viewpoint of the car as WSD feels kind of weird.
← Return to game
Comments
Log in with itch.io to leave a comment.
Nice game - I tried to use the arrow keys for controls, but found I needed to rotate the keyboard. Perhaps consider the mapping:
Specifically, the code changes are:
v0 := OCTO_KEY_D
if v0 key then px += 1
if px == 64
then :call moveplayer
v0 := OCTO_KEY_W
if v0 key then py -= 1
v0 := OCTO_KEY_S
if v0 key then py += 1
...
I considered that, but decided I wanted to have the controls be from the viewpoint of the car as WSD feels kind of weird.