Example #1
0
 public static Vector3Int Floor(this LVector3 vec)
 {
     return(new Vector3Int(
                LMath.FloorToInt(vec.x),
                LMath.FloorToInt(vec.y),
                LMath.FloorToInt(vec.z)
                ));
 }