15 lines
185 B
C#
15 lines
185 B
C#
#if UNITY_EDITOR
|
|
namespace O3DWB
|
|
{
|
|
public enum CameraViewVolumePlane
|
|
{
|
|
Left = 0,
|
|
Right,
|
|
Bottom,
|
|
Top,
|
|
Near,
|
|
Far
|
|
}
|
|
}
|
|
#endif
|