Fallable
Link to fallable
Импорт класса
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.Fallable;
Методы
Link to методы
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 Copy// Fallable.getFallDamageSource() as DamageSource
(<block:minecraft:sand> as Fallable).getFallDamageSource();
Name: getHurtsEntitySelector
Gets a predicate that determines if an entity should be damaged by this falling block.
Returns: The predicate that determines if an entity should be damaged by this falling block.
Return Type: Predicate<Entity>
ZenScript Copy// Fallable.getHurtsEntitySelector() as Predicate<Entity>
(<block:minecraft:sand> as Fallable).getHurtsEntitySelector();
Name: onBrokenAfterFall
ZenScript CopyFallable.onBrokenAfterFall(level as Level, pos as BlockPos, fallingEntity as FallingBlockEntity)
Параметр | Тип |
---|---|
Параметр level | Тип Level |
Параметр pos | Тип BlockPos |
Параметр fallingEntity | Тип FallingBlockEntity |
Name: onLand
ZenScript CopyFallable.onLand(level as Level, pos as BlockPos, fallingState as BlockState, placeState as BlockState, fallingEntity as FallingBlockEntity)
Параметр | Тип |
---|---|
Параметр level | Тип Level |
Параметр pos | Тип BlockPos |
Параметр fallingState | Тип BlockState |
Параметр placeState | Тип BlockState |
Параметр fallingEntity | Тип FallingBlockEntity |
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter | Описание |
---|---|---|---|---|
Название fallDamageSource | Тип DamageSource | Имеет Getter true | Имеет Setter false | Описание Gets the damage source used when this block falls on an entity. |
Название hurtsEntitySelector | Тип Predicate<Entity> | Имеет Getter true | Имеет Setter false | Описание Gets a predicate that determines if an entity should be damaged by this falling block. |