14 lines
223 B
C#
14 lines
223 B
C#
#if UNITY_EDITOR
|
|
public enum BoxPoint
|
|
{
|
|
Center = 0,
|
|
FrontTopLeft,
|
|
FrontTopRight,
|
|
FrontBottomRight,
|
|
FrontBottomLeft,
|
|
BackTopLeft,
|
|
BackTopRight,
|
|
BackBottomRight,
|
|
BackBottomLeft
|
|
}
|
|
#endif |