Version: 2019.2
LanguageEnglish
  • C#
Experimental: this API is experimental and might be changed or removed in the future.

XRReferencePointSubsystem.TryAddReferencePoint

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public bool TryAddReferencePoint(Vector3 position, Quaternion rotation, out Experimental.XR.TrackableId referencePointId);

Parameters

positionCurrent position, in device space, of a point you want the device to track.
rotationCurrent rotation, in device space, of a point you want the device to track.
referencePointIdIf this method returns true, this is filled out with the ID (unique to the session) of the point.

Returns

bool If the ReferencePoint was added successfully, this method returns true. Otherwise, it returns false.

Description

Attempt to add a ReferencePoint that gets tracked by the device.


public bool TryAddReferencePoint(Pose pose, out Experimental.XR.TrackableId referencePointId);

Parameters

poseCurrent pose, in device space, of a point you want the device to track.
referencePointIdIf this method returns true, this is filled out with the ID (unique to the session) of the point.

Returns

bool If the ReferencePoint was added successfully, this method returns true. Otherwise, it returns false.

Description

Attempt to add a ReferencePoint that gets tracked by the device.