SW 중심대학 OSS GIT 서버 박건태, 이승준, 고기완, 이준호 새로운 배포
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
1.1 KiB

using System;
namespace UnityEngine.XR.ARSubsystems
{
/// <summary>
/// Defines an interface for the <c>struct</c>s associated with tracking subsystems.
/// </summary>
/// <remarks>
/// Subsystems that detect and track features in the environment, such as planes or images,
/// follow a similar pattern and should use <see cref="ITrackable"/> for the structs defining
/// their session relative data.
/// </remarks>
public interface ITrackable
{
/// <summary>
/// The <see cref="TrackableId"/> associated with this trackable.
/// </summary>
TrackableId trackableId { get; }
/// <summary>
/// The <c>Pose</c> associated with this trackable.
/// </summary>
Pose pose { get; }
/// <summary>
/// The <see cref="TrackingState"/> associated with this trackable.
/// </summary>
TrackingState trackingState { get; }
/// <summary>
/// The native pointer associated with this trackable.
/// </summary>
IntPtr nativePtr { get; }
}
}