AutoFindLocations.cs 159 B

12345678910111213
  1. using System;
  2. namespace Leap.Unity.Attributes
  3. {
  4. public enum AutoFindLocations
  5. {
  6. Object = 1,
  7. Children,
  8. Parents = 4,
  9. Scene = 8,
  10. All = 65535
  11. }
  12. }