12345678910111213141516171819202122232425262728293031 |
-
- namespace NRKernal
- {
- using System;
- using UnityEngine;
- public interface ITrackingDataProvider : ILifecycle
- {
- bool GetHeadPose(ref Pose pose, UInt64 timestamp);
- ulong GetHMDTimeNanos();
- bool GetFramePresentHeadPose(ref Pose pose, ref LostTrackingReason lostReason, ref UInt64 timestamp);
- bool GetFramePresentTimeByCount(int count, ref UInt64 timestamp);
- bool InitTrackingMode(TrackingMode mode);
- bool SwitchTrackingMode(TrackingMode mode);
- void Recenter();
- }
- }
|