So I have designed my game to require left mouse clicks only. I have read that such a thing can be simulated out of the box with a touch screen. On the other hand, I read that this is not recommended for production. Why not?
I am getting ready to try testing my game on my wife’s ipad. I’m wondering if I need to write any specific code. Right now I’m only using:
if(Input.GetMouseButtonDown(0))
//and
if(Input.GetMouseButtonUp(0))
Can I test my game with those on the iPad? If so, why could I not release using the simulated mouse?