Fallable
Link to fallable
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.type.falling.Fallable;
Methods
Link to methods
Name: getFallDamageSource
Gets the damage source used when this block falls on an entity.
Returns: The damage source used when this block falls on an entity.
Return Type: DamageSource
ZenScript CopyFallable.getFallDamageSource(entity as Entity) as DamageSource
Parameter | Type |
---|---|
Parameter entity | Type Entity |
Name: onBrokenAfterFall
ZenScript CopyFallable.onBrokenAfterFall(level as Level, pos as BlockPos, fallingEntity as FallingBlockEntity)
Parameter | Type |
---|---|
Parameter level | Type Level |
Parameter pos | Type BlockPos |
Parameter fallingEntity | Type FallingBlockEntity |
Name: onLand
ZenScript CopyFallable.onLand(level as Level, pos as BlockPos, fallingState as BlockState, placeState as BlockState, fallingEntity as FallingBlockEntity)
Parameter | Type |
---|---|
Parameter level | Type Level |
Parameter pos | Type BlockPos |
Parameter fallingState | Type BlockState |
Parameter placeState | Type BlockState |
Parameter fallingEntity | Type FallingBlockEntity |