using System;
using UnityEngine.XR.ARSubsystems;
namespace UnityEngine.XR.ARFoundation
{
///
/// Represents a tracked image in the physical environment.
///
[DisallowMultipleComponent]
[DefaultExecutionOrder(ARUpdateOrder.k_TrackedImage)]
[HelpURL(HelpUrls.ApiWithNamespace + nameof(ARTrackedImage) + ".html")]
public class ARTrackedImage : ARTrackable
{
///
/// The 2D extents of the image. This is half the .
///
public Vector2 extents
{
get { return sessionRelativeData.size * 0.5f; }
}
///
/// The 2D size of the image. This is the dimensions of the image.
///
///
public Vector2 size
{
get { return sessionRelativeData.size; }
}
///
/// Get a native pointer associated with this tracked image.
///
///
/// The data pointed to by this member is implementation defined.
/// The lifetime of the pointed to object is also
/// implementation defined, but should be valid at least until the next
/// update.
///
public IntPtr nativePtr
{
get { return sessionRelativeData.nativePtr; }
}
///
/// The reference image which was used to detect this image in the environment.
///
public XRReferenceImage referenceImage { get; internal set; }
}
}