BlockEntity
Link to blockentity
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.block.entity.BlockEntity;
Extending CapabilityProvider<BlockEntity>
Link to extending-capabilityproviderblockentity
BlockEntity extends CapabilityProvider<BlockEntity>. That means all methods available in CapabilityProvider<BlockEntity> are also available in BlockEntity
Methods
Link to methods
Name: getBlockPos
Return Type: BlockPos
ZenScript Copy// BlockEntity.getBlockPos() as BlockPos
myBlockEntity.getBlockPos();
Name: getBlockState
Return Type: BlockState
ZenScript Copy// BlockEntity.getBlockState() as BlockState
myBlockEntity.getBlockState();
Name: getLevel
Return Type: Level?
ZenScript Copy// BlockEntity.getLevel() as Level?
myBlockEntity.getLevel();
Name: getRegistryName
Return Type: ResourceLocation
ZenScript Copy// BlockEntity.getRegistryName() as ResourceLocation
myBlockEntity.getRegistryName();
Name: hasLevel
Return Type: boolean
ZenScript Copy// BlockEntity.hasLevel() as boolean
myBlockEntity.hasLevel();
Name: updateData
ZenScript CopyBlockEntity.updateData(data as IData)
Parameter | Type |
---|---|
Parameter data | Type IData |
Properties
Link to properties
名称 | Type | Has Getter | Has Setter |
---|---|---|---|
名称 blockPos | Type BlockPos | Has Getter true | Has Setter false |
名称 blockState | Type BlockState | Has Getter true | Has Setter false |
名称 data | Type IData | Has Getter true | Has Setter true |
名称 hasLevel | Type boolean型 | Has Getter true | Has Setter false |
名称 level | Type Level? | Has Getter true | Has Setter false |
名称 registryName | Type ResourceLocation | Has Getter true | Has Setter false |