using System.Collections.Generic; using UnityEngine; using UnityEngine.Experimental.XR; using UnityEngine.XR.ARFoundation; [RequireComponent(typeof(ARSessionOrigin))] public class PlaceOnPlane : MonoBehaviour { [SerializeField] [Tooltip("Instantiates this prefab on a plane at the touch location.")] GameObject m_PlacedPrefab; /// /// The prefab to instantiate on touch. /// public GameObject placedPrefab { get { return m_PlacedPrefab; } set { m_PlacedPrefab = value; } } /// /// The object instantiated as a result of a successful raycast intersection with a plane. /// public GameObject spawnedObject { get; private set; } ARSessionOrigin m_SessionOrigin; static List s_Hits = new List(); void Awake() { m_SessionOrigin = GetComponent(); } void Update() { if (Input.touchCount > 0) { Touch touch = Input.GetTouch(0); if (m_SessionOrigin.Raycast(touch.position, s_Hits, TrackableType.PlaneWithinPolygon)) { Pose hitPose = s_Hits[0].pose; if (spawnedObject == null) { spawnedObject = Instantiate(m_PlacedPrefab, hitPose.position, hitPose.rotation); } else { spawnedObject.transform.position = hitPose.position; } } } } }