FallingBlock
Link to fallingblock
导入类
Link to 导入类
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.type.falling.FallingBlock;
Extending Block
Link to extending-block
FallingBlock extends Block. That means all methods available in Block are also available in FallingBlock
已实现的接口
Link to 已实现的接口
FallingBlock implements the following interfaces. That means all methods defined in these interfaces are also available in FallingBlock
Static Methods
Link to static-methods
Name: isFree
Checks if the given blockstate stops a block from falling through it.
Returns: True if the blockstate can be fallen through, false otherwise.
Return Type: boolean
ZenScript Copy// FallingBlock.isFree(state as BlockState) as boolean
FallingBlock.isFree(<blockstate:minecraft:dirt>);
参数 | 类型 | 描述 |
---|---|---|
参数 state | 类型 BlockState | 描述 The state the check. |
使用方式
Link to 使用方式
Name: getDustColor
Return Type: int
ZenScript CopyFallingBlock.getDustColor(state as BlockState, level as Level, pos as BlockPos) as int
参数 | 类型 |
---|---|
参数 state | 类型 BlockState |
参数 level | 类型 Level |
参数 点 | 类型 BlockPos |