SDK_UnityHeadsetTracker.cs 500 B

123456789101112131415
  1. // Unity SDK Headset Tracker|SDK_Unity|006
  2. namespace VRTK
  3. {
  4. using UnityEngine;
  5. /// <summary>
  6. /// The Headset Tracker enables the GameObject to track it's position/rotation to the available connected VR HMD via the `UnityEngine.VR` library.
  7. /// </summary>
  8. /// <remarks>
  9. /// The Unity Headset Tracker is attached to the `[UnityBase_CameraRig]` prefab on the child `Head` HMD tracking.
  10. /// </remarks>
  11. public class SDK_UnityHeadsetTracker : MonoBehaviour
  12. {
  13. }
  14. }