13 lines
167 B
C#
13 lines
167 B
C#
|
#if UNITY_EDITOR
|
|||
|
namespace GSpawn
|
|||
|
{
|
|||
|
public enum PlaneClassifyResult
|
|||
|
{
|
|||
|
InFront = 0,
|
|||
|
Behind,
|
|||
|
OnPlane,
|
|||
|
Spanning
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endif
|