Interface Virtualized<T,​R extends Volume>

    • Method Detail

      • at

        default ResourceKey at​(Vector3i position)
        Gets an object representing the biome at the given position.
        Parameters:
        position - The position
        Returns:
        The biome
        Throws:
        PositionOutOfBoundsException - If the position is outside of the bounds of the volume
      • at

        ResourceKey at​(int x,
                       int y,
                       int z)
        Gets the Biome at the given location.
        Parameters:
        x - The X position
        y - The Y position
        z - The Z position
        Returns:
        The biome
        Throws:
        PositionOutOfBoundsException - If the position is outside of the bounds of the volume
      • at

        default java.util.Optional<T> at​(int x,
                                         int y,
                                         int z,
                                         Registry<T> registry)