BlockState
Link to blockstate
Builder to create a 'BlockState' loot condition.
The condition compares the block state obtained from the LootContext with the given one, passing only if they are exactly the same state.
A 'BlockState' loot condition requires a block state to be built.
导入类
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.loot.conditions.crafttweaker.BlockState;
已实现的接口
Link to 已实现的接口
BlockState implements the following interfaces. That means all methods defined in these interfaces are also available in BlockState
使用方式
Link to 使用方式
Name: withState
Sets the state that the condition must check.
The state will be matched exactly.
This parameter is required.
Returns: This builder for chaining.
Return Type: BlockState
ZenScript CopyBlockState.withState(state as MCBlockState) as BlockState
参数 | 类型 | 描述 |
---|---|---|
参数 state | 类型 MCBlockState #MC方块状态 | 描述 The state to check. |