Home Getting Started With Scripts Commands Examples
BracketDumpers BracketHandlers BracketValidators

BlockEntity

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.

script.zs
import crafttweaker.api.block.entity.BlockEntity;

Methods

Return Type: BlockPos

script.zs
// BlockEntity.getBlockPos() as BlockPos
myBlockEntity.getBlockPos();

Return Type: BlockState

script.zs
// BlockEntity.getBlockState() as BlockState
myBlockEntity.getBlockState();

Return Type: Level

script.zs
// BlockEntity.getLevel() as Level
myBlockEntity.getLevel();

Return Type: boolean

script.zs
// BlockEntity.hasLevel() as boolean
myBlockEntity.hasLevel();

Return Type: void

script.zs
BlockEntity.updateData(data as MapData) as void
ParameterTypeDescription
Parameter
data
Type
MapData
Description
No Description Provided

Properties

NameTypeHas GetterHas SetterDescription
Name
blockPos
Type
BlockPos
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
blockState
Type
BlockState
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
data
Type
MapData
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
hasLevel
Type
boolean
Has Getter
true
Has Setter
false
Description
No Description Provided
Name
level
Type
Level
Has Getter
true
Has Setter
false
Description
No Description Provided