Method IsOverlap
IsOverlap(ITile, IBiome[])
Tests whether a tile overlaps at least one biome in a supplied set.
public static bool IsOverlap(this ITile tile, IBiome[] biomes)
Parameters
tileITileThe tile whose worldBounds should be tested.
biomesIBiome[]The biome collection to test against the tile bounds.
Returns
Remarks
The method delegates the geometric test to IsOverlap(Bounds) for each biome and stops on the first positive result.