public interface IChunkLoadingTile
TileEntity
's that wish to be chunkloaded by buildcraft lib. Note that tiles
should add themselves to the chunkloading list in ChunkLoaderManager.loadChunksForTile(TileEntity)
Modifier and Type | Interface and Description |
---|---|
static class |
IChunkLoadingTile.LoadType |
Modifier and Type | Method and Description |
---|---|
default java.util.Collection<net.minecraft.util.math.ChunkPos> |
getChunksToLoad()
Gets a list of all the ADDITIONAL chunks to load.
|
default IChunkLoadingTile.LoadType |
getLoadType() |
@Nullable default IChunkLoadingTile.LoadType getLoadType()
@Nullable default java.util.Collection<net.minecraft.util.math.ChunkPos> getChunksToLoad()
ChunkPos
that this tile is
contained within. If the return value is null then only the chunk containing this block will be
chunkloaded.