ArmorTrim
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.ArmorTrim;
Implements
Undocumented Interfaces
TooltipProvider
Members
hasPatternAndMaterial(pattern as TrimPattern, material as TrimMaterial) as bool
Checks if the armor trim has a pattern and material.script.zs
Returns: Whether the armor trim has a pattern and material.
myArmorTrim.hasPatternAndMaterial(myTrimPattern, myTrimMaterial);
Parameters:
Return Type:
bool
innerTexture(material as ArmorMaterial) as ResourceLocation
Gets the inner texture of the armor trim.script.zs
Returns: The inner texture of the armor trim.
myArmorTrim.innerTexture(myArmorMaterial);
Parameters:
Return Type:
ResourceLocation
Getter
Gets the material of the armor trim.script.zs
// ArmorTrim.material as TrimMaterialmyArmorTrim.material
Return Type:
TrimMaterial
static of(material as TrimMaterial, pattern as TrimPattern, showInTooltip as bool = true) as ArmorTrim
Creates a new ArmorTrim.script.zs
Returns: The new ArmorTrim.
// ArmorTrim.of(material as TrimMaterial, pattern as TrimPattern, showInTooltip as bool = true) as ArmorTrim;ArmorTrim.of(myTrimMaterial, myTrimPattern, myBool);
Parameters:
showInTooltip: bool
(optional) Type: bool
- Whether the armor trim should show in the tooltip.
Default Value: true
Return Type:
ArmorTrim
outerTexture(material as ArmorMaterial) as ResourceLocation
Gets the outer texture of the armor trim.script.zs
Returns: The outer texture of the armor trim.
myArmorTrim.outerTexture(myArmorMaterial);
Parameters:
Return Type:
ResourceLocation
Getter
Gets the pattern of the armor trim.script.zs
// ArmorTrim.pattern as TrimPatternmyArmorTrim.pattern
Return Type:
TrimPattern
withTooltip(withTooltip as bool) as ArmorTrim