Tango / Unity - 用户界面不会屏蔽屏幕上的触摸

时间:2017-04-01 00:45:58

标签: c# unity3d google-project-tango

我们正在构建一个类似于“Kitten - 在AR中放置虚拟对象”的示例,如下所示:

https://developers.google.com/tango/apis/unity/unity-howto-placing-objects

基本上当你触摸屏幕时,一只小猫出现在现实世界的飞机(地板)上。

在我们的应用程序中,我们有一个侧面菜单,有几个按钮,每个按钮都显示不同的游戏对象。我们希望在屏幕上的任何地方检测触摸,除非有UI。我们希望UI能够阻止Tango中的触摸,并且只允许触摸在没有UI元素的情况下在屏幕区域上实例化相关游戏对象。

触摸特定代码在这里:

void Update() {
    if (Input.touchCount == 1) {
        // Trigger placepictureframe function when single touch ended.
        Touch t = Input.GetTouch(0);
        if (t.phase == TouchPhase.Ended) {
            PlacePictureFrame(t.position);
        }
    }
}

PlacePictureFrame()将相框对象放置在触摸位置。)

我找不到任何有触摸和UI组合的Tango示例。我尝试过一种名为LeanTouch的资产来阻止UI元素背后的触摸,但它似乎并没有特别适用于Tango。请帮忙!

我尝试过使用方法5:

How to detect events on UI and GameObjects with the new EventSystem API

虽然它会向PhysicsRaycaster添加TangoARCamera(标记为MainCamera),但无论您在何处触摸,OnPointerDown方法都不会生成调试日志屏幕。 Tango是一个特例,所以这不是一个重复的问题。见下文:

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;

public class PictureFrameUIController : MonoBehaviour, IPointerClickHandler {

    public GameObject m_pictureFrame;
    private TangoPointCloud m_pointCloud;

    void Start() {
        m_pointCloud = FindObjectOfType<TangoPointCloud>();
        addPhysicsRaycaster();
    }

    void addPhysicsRaycaster() {
        PhysicsRaycaster physicsRaycaster = GameObject.FindObjectOfType<PhysicsRaycaster>();
        if (physicsRaycaster == null) {
            Camera.main.gameObject.AddComponent<PhysicsRaycaster>();
        }
    }

    public void OnPointerClick(PointerEventData eventData) {
        Debug.Log("Clicked: " + eventData.pointerCurrentRaycast.gameObject.name);
        PlacePictureFrame(eventData.pointerCurrentRaycast.screenPosition);
    }


    //void Update() {
    //  if (Input.touchCount == 1) {
    //      // Trigger placepictureframe function when single touch ended.
    //      Touch t = Input.GetTouch(0);
    //      if (t.phase == TouchPhase.Ended) {
    //          PlacePictureFrame(t.position);
    //      }
    //  }
    //}

    void PlacePictureFrame(Vector2 touchPosition) {
        // Find the plane.
        Camera cam = Camera.main;
        Vector3 planeCenter;
        Plane plane;
        if (!m_pointCloud.FindPlane(cam, touchPosition, out planeCenter, out plane)) {
            Debug.Log("cannot find plane.");
            return;
        }

        // Place picture frame on the surface, and make it always face the camera.
        if (Vector3.Angle(plane.normal, Vector3.up) > 60.0f && Vector3.Angle(plane.normal, Vector3.up) < 140.0f) {
            Vector3 forward = plane.normal;
            // Vector3 right = Vector3.Cross(plane.normal, cam.transform.forward).normalized;
            // Vector3 forward = Vector3.Cross(right, plane.normal).normalized;
            Instantiate(m_pictureFrame, planeCenter, Quaternion.LookRotation(forward, Vector3.up));
        } else {
            Debug.Log("surface is not steep enough for picture frame to be placed on.");
        }
    }

    public void DeleteAllFrames() {
        GameObject[] frames = GameObject.FindGameObjectsWithTag("Frame");
        if (frames == null) {
            return;
        }
        foreach (GameObject frame in frames) {
            Destroy(frame);
        }
    }
}

1 个答案:

答案 0 :(得分:2)

如果要在屏幕上的任何位置检测到单击,除了有UI控件/组件的位置,您必须使用EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId)检查指针是否在UI上。

如果在桌面设备上,请使用EventSystem.current.IsPointerOverGameObject()。你正在使用Tango EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId)。应该使用。

void Update()
{
    if (Input.touchCount == 1)
    {
        //Trigger placepictureframe function when single touch ended.
        Touch t = Input.GetTouch(0);
        if (t.phase == TouchPhase.Ended)
        {
            //Make sure that pointer is not over UI before calling  PlacePictureFrame
            if (!EventSystem.current.IsPointerOverGameObject(Input.GetTouch(0).fingerId))
            {
                PlacePictureFrame(t.position);
            }
        }
    }
}

修改

似乎这仅适用于TouchPhase.Began

更改t.phase == TouchPhase.Ended to t.phase == TouchPhase.Began,这应该按预期工作。确保使用移动设备/探戈而不是鼠标进行测试。