Hi,
We had a similar doubt when implementing our UI with the new Unity UI. Our UI was getting messy when more than one UI button was pressed simultaneously and we wanted to disable that and allow only one input touch.
So we set the “Input.multiTouchEnabled” to false in our first scene manager’s Awake() and it worked fine. Only one UI element was taking input/touch after that. Although, in the Unity editor Input.multiTouchEnabled was still showing as true even after setting to false but when built onto a device, it worked without any issues. We haven’t checked with Unity remote.
Even in our gameplay we don’t need multitouch, so I guess its fine.
We searched in Unity docs but couldn’t find any other way or better way to disable multi touch with the new Input Modules or EventSystem.
Hope it helps. Cheers.
Great answer! Thanks :)
– HutCould you please show me a little part of your code? I'm working on this since 2 days... Please help..
– Boast