I am currently stuck with an issue regarding Multitouch.
I’m working on a very simple game, say where it’s just images/animations etc.
Multitouch is wreaking havoc in the game…
is there any trivial way to disable it for good ? like throughout all the scenes of the game ?
EDIT : thanks to @DarkToadster, it was indeed the Input.MultiTouchEnabled option which needed to be set to false.
void Awake()
{
Input.multiTouchEnabled = false;
}
I was testing the game in Unity Editor and not on the device, which led to the solution not working at first. Doing so through Unity Remote solved the problem !
cheers !