public float GetGround(float x, float z)
{
return this.GetGroundDist(x, float.MaxValue, z);
}
public float GetGroundDist(Vector3 vector3)
{
return this.GetGroundDist(vector3.x, vector3.y, vector3.z);
}
public float GetGroundDist(float x, float y, float z)...