BoxFacePoint.cs 182 B

12345678910111213
  1. #if UNITY_EDITOR
  2. namespace O3DWB
  3. {
  4. public enum BoxFacePoint
  5. {
  6. Center = 0,
  7. TopLeft,
  8. TopRight,
  9. BottomRight,
  10. BottomLeft
  11. }
  12. }
  13. #endif