using System; using UnityEngine.XR.ARSubsystems; namespace UnityEngine.XR.ARFoundation { /// /// Represents a tracked object in the physical environment. /// /// /// Related information: AR Tracked Object Manager component /// [DefaultExecutionOrder(ARUpdateOrder.k_TrackedObject)] [DisallowMultipleComponent] [HelpURL(typeof(ARTrackedObject))] public class ARTrackedObject : ARTrackable { /// /// The reference object which was used to detect this object in the environment. /// public XRReferenceObject referenceObject { get; internal set; } } }