PointingType.cs 146 B

123456789101112
  1. using System;
  2. namespace Leap.Unity
  3. {
  4. public enum PointingType
  5. {
  6. RelativeToCamera,
  7. RelativeToHorizon,
  8. RelativeToWorld,
  9. AtTarget
  10. }
  11. }