Импорт класса

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
Copy
import crafttweaker.api.block.type.falling.FallingBlock;

FallingBlock extends Block. That means all methods available in Block are also available in FallingBlock

Implemented Interfaces

Link to implemented-interfaces

FallingBlock implements the following interfaces. That means all methods defined in these interfaces are also available in FallingBlock

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.

Name: getDustColor

Return Type: int

ZenScript
Copy
FallingBlock.getDustColor(state as BlockState, level as Level, pos as BlockPos) as int
ПараметрТип
Параметр
state
Тип
BlockState
Параметр
level
Тип
Level
Параметр
pos
Тип
BlockPos