📜  unity 检测 ui 元素上的触摸 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:23.883000             🧑  作者: Mango

代码示例1
foreach (Touch touch in Input.touches)
{
    int id = touch.fingerId;
    if (EventSystem.current.IsPointerOverGameObject(id))
    {
        // ui touched
    }
 }