コード例 #1
0
 public static WorldSelection SphereSelection(World world, Vector3Int center, float radius)
 {
     return(WorldSelection.FromEnumerable(world, SelectSphere(center, radius)));
 }
コード例 #2
0
 public static WorldSelection CuboidSelection(World world, Vector3Int min, Vector3Int max)
 {
     return(WorldSelection.FromEnumerable(world, SelectCuboid(min, max)));
 }