Class BiomeMask
java.lang.Object
com.sk89q.worldedit.function.mask.AbstractMask
com.sk89q.worldedit.function.mask.AbstractExtentMask
com.sk89q.worldedit.function.mask.BiomeMask
- All Implemented Interfaces:
Mask
Tests true if the biome at applied points is the same as the one given.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidAdd the given biomes to the list of criteria.voidadd(Collection<BiomeType> biomes) Add the given biomes to the list of criteria.copy()Returns a copy of the mask.Get the list of biomes that are tested with.booleantest(Extent extent, BlockVector3 position) booleantest(BlockVector3 vector) Returns true if the criteria is met.toMask2D()Get the 2D version of this mask if one exists.Methods inherited from class AbstractExtentMask
getExtent, setExtentMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Mask
inverse, optimize, replacesAir, toFilter, toFilter, tryCombine, tryOptimize, tryOr
-
Constructor Details
-
BiomeMask
Create a new biome mask.- Parameters:
extent- the extentbiomes- a list of biomes to match
-
BiomeMask
-
-
Method Details
-
add
Add the given biomes to the list of criteria.- Parameters:
biomes- a list of biomes
-
add
Add the given biomes to the list of criteria.- Parameters:
biome- an array of biomes
-
getBiomes
Get the list of biomes that are tested with.- Returns:
- a list of biomes
-
test
Description copied from interface:MaskReturns true if the criteria is met.- Parameters:
vector- the vector to test- Returns:
- true if the criteria is met
-
toMask2D
-
copy
-
test
- Specified by:
testin classAbstractExtentMask
-