ratcliffja
Member
Won't up+left choose the upper left option? I think that's typically how simultaneous input is handled. It's really a question of whether they did something like:No it doesn't. You're not entering the commands sequentially, you're entering them together.
if(Input.buttondown(Dpad_up))
GoUp()
if(Input.buttondown(Dpad_left))
GoLeft()
Or they did:
if(Input.buttondown(Dpad_up))
GoUp()
else if(Input.buttondown(Dpad_left))
GoLeft()
If the former, button commands should work. If the latter, they won't.