BlockItemStateProperties
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.item.component.BlockItemStateProperties;
Members
apply(state as BlockState) as BlockState
Applies the BlockItemStateProperties to the given script.zs
BlockState
.Returns: The new BlockState
.
myBlockItemStateProperties.apply(myBlockState);
Parameters:
Return Type:
BlockState
Getter
Checks if the BlockItemStateProperties is empty.script.zs
// BlockItemStateProperties.isEmpty as boolmyBlockItemStateProperties.isEmpty
Return Type:
bool
static of(properties as string[string]) as BlockItemStateProperties
Creates a new BlockItemStateProperties with the given properties.script.zs
Returns: The new BlockItemStateProperties.
BlockItemStateProperties.of(myMap);
Parameters:
properties: string[string]
Type: string[string]
- The properties.
Return Type:
BlockItemStateProperties
properties() as string[string]
Gets the properties of the BlockItemStateProperties.script.zs
Returns: The properties.
// BlockItemStateProperties.properties() as string[string];myBlockItemStateProperties.properties();
Return Type:
string[string]