BoxPoint.cs 223 B

1234567891011121314
  1. #if UNITY_EDITOR
  2. public enum BoxPoint
  3. {
  4. Center = 0,
  5. FrontTopLeft,
  6. FrontTopRight,
  7. FrontBottomRight,
  8. FrontBottomLeft,
  9. BackTopLeft,
  10. BackTopRight,
  11. BackBottomRight,
  12. BackBottomLeft
  13. }
  14. #endif