BlockToolModificationEvent
Link to blocktoolmodificationevent
Fired when this block is interacted with by a tool to change its state. For example: Used to determine if an axe can strip a log, a shovel can turn grass into a path, or a hoe can till dirt into farmland.
The event is cancelable.
If the event is canceled, this will prevent the tool from changing the block's state.
The event does not have a result.
Diese Klasse importieren
Link to diese-klasse-importieren
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.event.block.BlockToolModificationEvent;
Extending BlockEvent
Link to extending-blockevent
BlockToolModificationEvent extends BlockEvent. That means all methods available in BlockEvent are also available in BlockToolModificationEvent
Methoden
Link to methoden
Name: getFinalState
Gets the transformed state after tool use. If setFinalState is not called, it will return the original state. This will be bypassed if canceled, returning null instead.
Return Type: BlockState?
ZenScript Copy// BlockToolModificationEvent.getFinalState() as BlockState?
myBlockToolModificationEvent.getFinalState();
Name: getHeldItemStack
Return Type: IItemStack
ZenScript Copy// BlockToolModificationEvent.getHeldItemStack() as IItemStack
myBlockToolModificationEvent.getHeldItemStack();
Name: getPlayer
Return Type: Player
ZenScript Copy// BlockToolModificationEvent.getPlayer() as Player
myBlockToolModificationEvent.getPlayer();
Name: getToolType
Return Type: ToolAction
ZenScript Copy// BlockToolModificationEvent.getToolType() as ToolAction
myBlockToolModificationEvent.getToolType();
Name: setFinalState
Sets the transformed state after tool use. If not set, will return the original state. This will be bypassed if canceled, returning null instead.
ZenScript CopyBlockToolModificationEvent.setFinalState(state as BlockState)
Parameter | Type |
---|---|
Parameter state | Type BlockState |
Properties
Link to properties
Name | Type | Has Getter | Has Setter | Beschreibung |
---|---|---|---|---|
Name finalState | Type BlockState? | Has Getter true | Has Setter true | Beschreibung Gets the transformed state after tool use. If setFinalState is not called, it will return the original state. This will be bypassed if canceled, returning null instead. |
Name heldItemStack | Type IItemStack | Has Getter true | Has Setter false | Beschreibung |
Name player | Type Player | Has Getter true | Has Setter false | Beschreibung |
Name toolAction | Type ToolAction | Has Getter true | Has Setter false | Beschreibung |