TrimPattern
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.armortrim.TrimPattern;
Members
Getter
Gets the asset ID of the trim pattern.script.zs
// TrimPattern.assetId as ResourceLocationmyTrimPattern.assetId
Return Type:
ResourceLocation
Getter
Gets the command string of the trim pattern.script.zs
// TrimPattern.commandString as stringmyTrimPattern.commandString
Return Type:
string
copyWithStyle(material as TrimMaterial) as Component
Copies the trim pattern's description with a given material's style. script.zs
Returns: The new trim pattern.
myTrimPattern.copyWithStyle(myTrimMaterial);
Parameters:
Return Type:
Component
Getter
Gets whether the trim pattern is a decal.script.zs
// TrimPattern.decal as boolmyTrimPattern.decal
Return Type:
bool
Getter
Gets the registry name of the trim pattern.script.zs
// TrimPattern.registryName as ResourceLocationmyTrimPattern.registryName
Return Type:
ResourceLocation
Getter
Gets the template item of the trim pattern.script.zs
// TrimPattern.templateItem as ItemDefinitionmyTrimPattern.templateItem
Return Type:
ItemDefinition