HandIndex.cs 310 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace SC.XR.Unity.Module_InputSystem.InputDeviceHand {
  5. /// <summary>
  6. /// 表示识别到的手的index,无左右手之分,第一个识别的hand index为0,依次类推
  7. /// </summary>
  8. public enum HandIndex {
  9. Left,
  10. Right,
  11. }
  12. }