TrackMode.cs 195 B

123456789101112
  1. 
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. namespace SC.XR.Unity {
  7. public enum TrackMode {
  8. Mode_3Dof,
  9. Mode_6Dof,
  10. }
  11. }