docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Struct XRReferencePoint

    Describes session relative data for a reference point.

    Implements
    ITrackable
    IEquatable<XRReferencePoint>
    Inherited Members
    ValueType.ToString()
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: UnityEngine.XR.ARSubsystems
    Assembly: Unity.XR.ARSubsystems.dll
    Syntax
    [Obsolete("XRReferencePoint has been deprecated. Use XRAnchor instead (UnityUpgradable) -> UnityEngine.XR.ARSubsystems.XRAnchor", true)]
    public struct XRReferencePoint : ITrackable, IEquatable<XRReferencePoint>

    Constructors

    XRReferencePoint(TrackableId, Pose, TrackingState, IntPtr)

    Constructs the session-relative data for a reference point. This is typically provided by an implementation of the XRReferencePointSubsystem and not invoked directly.

    Declaration
    public XRReferencePoint(TrackableId trackableId, Pose pose, TrackingState trackingState, IntPtr nativePtr)
    Parameters
    Type Name Description
    TrackableId trackableId

    The TrackableId associated with this reference point.

    Pose pose

    The Pose, in session space, of the reference point.

    TrackingState trackingState

    The TrackingState of the reference point.

    IntPtr nativePtr

    A native pointer associated with the reference point. The data pointed to by this pointer is implementation-specific.

    See Also
    XRReferencePointSubsystem

    XRReferencePoint(TrackableId, Pose, TrackingState, IntPtr, Guid)

    Constructs the session-relative data for a reference point. This is typically provided by an implementation of the XRReferencePointSubsystem and not invoked directly.

    Declaration
    public XRReferencePoint(TrackableId trackableId, Pose pose, TrackingState trackingState, IntPtr nativePtr, Guid sessionId)
    Parameters
    Type Name Description
    TrackableId trackableId

    The TrackableId associated with this reference point.

    Pose pose

    The Pose, in session space, of the reference point.

    TrackingState trackingState

    The TrackingState of the reference point.

    IntPtr nativePtr

    A native pointer associated with the reference point. The data pointed to by this pointer is implementation-specific.

    Guid sessionId

    The session from which this reference point originated.

    See Also
    XRReferencePointSubsystem

    Properties

    defaultValue

    Gets a default-initialized XRReferencePoint. This can be different from the zero-initialized version (for example, the pose is Pose.identity instead of zero-initialized).

    Declaration
    public static XRReferencePoint defaultValue { get; }
    Property Value
    Type Description
    XRReferencePoint
    See Also
    XRReferencePointSubsystem

    nativePtr

    A native pointer associated with the reference point. The data pointed to by this pointer is implementation-specific.

    Declaration
    public IntPtr nativePtr { get; }
    Property Value
    Type Description
    IntPtr
    See Also
    XRReferencePointSubsystem

    pose

    Get the Pose, in session space, for this reference point.

    Declaration
    public Pose pose { get; }
    Property Value
    Type Description
    Pose
    See Also
    XRReferencePointSubsystem

    sessionId

    The id of the session from which this reference point originated.

    Declaration
    public Guid sessionId { get; }
    Property Value
    Type Description
    Guid
    See Also
    XRReferencePointSubsystem

    trackableId

    Get the TrackableId associated with this reference point.

    Declaration
    public TrackableId trackableId { get; }
    Property Value
    Type Description
    TrackableId
    See Also
    XRReferencePointSubsystem

    trackingState

    Get the TrackingState of this reference point.

    Declaration
    public TrackingState trackingState { get; }
    Property Value
    Type Description
    TrackingState
    See Also
    XRReferencePointSubsystem

    Methods

    Equals(object)

    Tests for equality.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    object obj

    The object to compare against.

    Returns
    Type Description
    bool

    True if obj is of type XRReferencePoint and Equals(XRReferencePoint) also returns true; otherwise false.

    Overrides
    ValueType.Equals(object)
    See Also
    XRReferencePointSubsystem

    Equals(XRReferencePoint)

    Tests for equality.

    Declaration
    public bool Equals(XRReferencePoint other)
    Parameters
    Type Name Description
    XRReferencePoint other

    The other XRReferencePoint to compare against.

    Returns
    Type Description
    bool

    True if every field in other is equal to this XRReferencePoint, otherwise false.

    See Also
    XRReferencePointSubsystem

    GetHashCode()

    Generates a hash suitable for use with containers like HashSet and Dictionary.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    A hash code generated from this object's fields.

    Overrides
    ValueType.GetHashCode()
    See Also
    XRReferencePointSubsystem

    Operators

    operator ==(XRReferencePoint, XRReferencePoint)

    Tests for equality. Same as Equals(XRReferencePoint).

    Declaration
    public static bool operator ==(XRReferencePoint lhs, XRReferencePoint rhs)
    Parameters
    Type Name Description
    XRReferencePoint lhs

    The left-hand side of the comparison.

    XRReferencePoint rhs

    The right-hand side of the comparison.

    Returns
    Type Description
    bool

    True if lhs is equal to rhs, otherwise false.

    See Also
    XRReferencePointSubsystem

    operator !=(XRReferencePoint, XRReferencePoint)

    Tests for inequality. Same as !Equals(XRReferencePoint).

    Declaration
    public static bool operator !=(XRReferencePoint lhs, XRReferencePoint rhs)
    Parameters
    Type Name Description
    XRReferencePoint lhs

    The left-hand side of the comparison.

    XRReferencePoint rhs

    The right-hand side of the comparison.

    Returns
    Type Description
    bool

    True if lhs is not equal to rhs, otherwise false.

    See Also
    XRReferencePointSubsystem

    Implements

    ITrackable
    IEquatable<T>

    See Also

    XRReferencePointSubsystem
    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)