Interface BiomePattern
- All Known Implementing Classes:
BiomeType
,ForgetfulExtentBuffer
public interface BiomePattern
Returns a
BiomeType
for a given position.-
Method Summary
Modifier and TypeMethodDescriptiondefault BiomeType
apply(BlockVector2 position)
Deprecated.default BiomeType
applyBiome(BlockVector3 position)
Return aBiomeType
for the given position.
-
Method Details
-
apply
Deprecated.Return aBiomeType
for the given position.- Parameters:
position
- the position- Returns:
- a biome
-
applyBiome
@NonAbstractForCompatibility(delegateName="apply", delegateParams=BlockVector2.class) default BiomeType applyBiome(BlockVector3 position)Return aBiomeType
for the given position.- Parameters:
position
- the position- Returns:
- a biome
- API Note:
- This must be overridden by new subclasses. See
NonAbstractForCompatibility
for details
-
applyBiome(BlockVector3)