yeah, well i knew you could do that but i dont really see a need for it cause there is no multi player option for the game. maybe i guess if some people are better with there left hand that'll be good, anyway thanks for the comment, i think ill actually change it to that but idk. cause right know i have the Key.isDown kinda complex and different, if you like to see the code im using comment back
VanVeenGames
You know, its quite easy to make a character move with WASD or the arrow keys, without a switch?
Example:
if(Key.isDown(Key.LEFT)||Key.isDown(6 5)) {
//do something as long as "left", or "a" or both are/is down.
}
and for the other keys, the numbers:
left=a=65
right=d=68
up=w=87
down=s=83
swishcheese
yeah, well i knew you could do that but i dont really see a need for it cause there is no multi player option for the game. maybe i guess if some people are better with there left hand that'll be good, anyway thanks for the comment, i think ill actually change it to that but idk. cause right know i have the Key.isDown kinda complex and different, if you like to see the code im using comment back