Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Disable Multi-touch

Discussion in 'Android' started by DavidC02, Mar 13, 2013.

  1. DavidC02

    DavidC02

    Joined:
    Jul 19, 2011
    Posts:
    152
    Hey guys, is there any way to disable multi-touch on Android devices?

    I've been lurking a little but haven't found anything concrete.

    I'd appreciate any help, thanks.
     
  2. vladimirdlc

    vladimirdlc

    Joined:
    Jan 26, 2013
    Posts:
    19
  3. Deleted User

    Deleted User

    Guest

    Setting
    Input.multiTouchEnabled = false;
    For unity 2020.3.40
    on the next line, multitouch is true again.
    wanted to disable multitouch for a specific scene, on awake disable inputs, on destroy reactivate them.
    Is there another way to disable inputs without getting all of them and droping all but the first one ?