DataComponentType

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.

script.zs
import crafttweaker.api.component.DataComponentType;

Description

Represents a type of data that game objects can have.
Some examples are: <componenttype:minecraft:stack_size> <componenttype:minecraft:durability> <componenttype:minecraft:enchantment:minecraft:damage>
Data components can be stored on any type that implements DataComponentHolder, such as net.minecraft.world.item.ItemStack.

Members

Getter
Gets the command string representation of the data component type.
script.zs
// DataComponentType<T>.commandString as string
myDataComponentType.commandString

Return Type: string

Getter
Checks if the data component type is transient, meaning it is not saved.
script.zs
// DataComponentType<T>.isTransient as bool
myDataComponentType.isTransient

Return Type: bool

Getter
Gets the registry name of the data component type.
script.zs
// DataComponentType<T>.registryName as ResourceLocation
myDataComponentType.registryName

Return Type: ResourceLocation