CameraViewVolumePlane.cs 185 B

1234567891011121314
  1. #if UNITY_EDITOR
  2. namespace O3DWB
  3. {
  4. public enum CameraViewVolumePlane
  5. {
  6. Left = 0,
  7. Right,
  8. Bottom,
  9. Top,
  10. Near,
  11. Far
  12. }
  13. }
  14. #endif