Files
ZeroVR/ZeroPacientVR/Assets/Octave3D World Builder/Scripts/Math/Box/BoxPoint.cs
T
2022-04-18 19:17:20 +03:00

14 lines
223 B
C#

#if UNITY_EDITOR
public enum BoxPoint
{
Center = 0,
FrontTopLeft,
FrontTopRight,
FrontBottomRight,
FrontBottomLeft,
BackTopLeft,
BackTopRight,
BackBottomRight,
BackBottomLeft
}
#endif