Package net.minecraftforge.debug.block
Class FullPotsAccessorDemo.DioriteFlowerPotTileEntity
java.lang.Object
net.minecraftforge.common.capabilities.CapabilityProvider<TileEntity>
net.minecraft.tileentity.TileEntity
net.minecraftforge.debug.block.FullPotsAccessorDemo.DioriteFlowerPotTileEntity
- All Implemented Interfaces:
ICapabilityProvider
,ICapabilitySerializable<CompoundNBT>
,IForgeTileEntity
,INBTSerializable<CompoundNBT>
- Enclosing class:
- FullPotsAccessorDemo
-
Field Summary
Modifier and TypeFieldDescriptionprivate final IModelData
private Block
static final ModelProperty<Block>
Fields inherited from class net.minecraft.tileentity.TileEntity
level, remove, worldPosition
Fields inherited from interface net.minecraftforge.common.extensions.IForgeTileEntity
INFINITE_EXTENT_AABB
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionAllows you to return additional model data.getPlant()
void
handleUpdateTag
(BlockState state, CompoundNBT tag) Called when the chunk's TE update tag, gotten from#getUpdateTag()
, is received on the client.void
load
(BlockState state, CompoundNBT tag) void
Called when you receive a TileEntityData packet for the location this TileEntity is currently in.save
(CompoundNBT tag) void
Methods inherited from class net.minecraft.tileentity.TileEntity
clearCache, clearRemoved, fillCrashReportCategory, getBlockPos, getBlockState, getLevel, getTileData, getType, getViewDistance, hasLevel, isRemoved, loadStatic, logInvalidState, mirror, onChunkUnloaded, onlyOpCanSetNbt, rotate, setChanged, setLevelAndPosition, setPosition, setRemoved, triggerEvent
Methods inherited from class net.minecraftforge.common.capabilities.CapabilityProvider
areCapsCompatible, areCapsCompatible, deserializeCaps, gatherCapabilities, gatherCapabilities, gatherCapabilities, getCapabilities, getCapability, invalidateCaps, reviveCaps, serializeCaps
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minecraftforge.common.capabilities.ICapabilityProvider
getCapability, getCapability
Methods inherited from interface net.minecraftforge.common.extensions.IForgeTileEntity
deserializeNBT, deserializeNBT, getRenderBoundingBox, getTileEntity, onLoad, requestModelDataUpdate, serializeNBT
-
Field Details
-
PLANT_PROPERTY
-
modelData
-
plant
-
-
Constructor Details
-
DioriteFlowerPotTileEntity
public DioriteFlowerPotTileEntity()
-
-
Method Details
-
setPlant
-
getPlant
-
getModelData
Description copied from interface:IForgeTileEntity
Allows you to return additional model data. This data can be used to provide additional functionality in yourIBakedModel
You need to schedule a refresh of you model data viaIForgeTileEntity.requestModelDataUpdate()
if the result of this function changes. Note that this method may be called on a chunk render thread instead of the main client thread- Returns:
- Your model data
-
getUpdateTag
- Overrides:
getUpdateTag
in classTileEntity
-
handleUpdateTag
Description copied from interface:IForgeTileEntity
Called when the chunk's TE update tag, gotten from#getUpdateTag()
, is received on the client.Used to handle this tag in a special way. By default this simply calls
#readFromNBT(NBTTagCompound)
.tag
- TheNBTTagCompound
sent from#getUpdateTag()
-
getUpdatePacket
- Overrides:
getUpdatePacket
in classTileEntity
-
onDataPacket
Description copied from interface:IForgeTileEntity
Called when you receive a TileEntityData packet for the location this TileEntity is currently in. On the client, the NetworkManager will always be the remote server. On the server, it will be whomever is responsible for sending the packet.- Parameters:
net
- The NetworkManager the packet originated frompkt
- The data packet
-
load
- Overrides:
load
in classTileEntity
-
save
- Overrides:
save
in classTileEntity
-