8 lines
115 B
C#
8 lines
115 B
C#
#if UNITY_EDITOR
|
|
public enum PointPlaneClassificationResult
|
|
{
|
|
InFront = 0,
|
|
Behind,
|
|
OnPlane
|
|
}
|
|
#endif |