Style
Link to style
Importare la Classe
Link to importare-la-classe
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 Copyimport crafttweaker.api.text.Style;
Static Methods
Link to static-methods
Metodi
Link to metodi
Name: applyFormat
Return Type: Style
ZenScript CopyStyle.applyFormat(format as ChatFormatting) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro format | Tipo ChatFormatting | Descrizione No Description Provided |
Name: applyFormats
Return Type: Style
ZenScript CopyStyle.applyFormats(formattings as ChatFormatting[]) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro formattings | Tipo ChatFormatting[] | Descrizione No Description Provided |
Name: applyLegacyFormat
Return Type: Style
ZenScript CopyStyle.applyLegacyFormat(format as ChatFormatting) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro format | Tipo ChatFormatting | Descrizione No Description Provided |
Name: getColor
Return Type: TextColor
ZenScript Copy// Style.getColor() as TextColor
myStyle.getColor();
Name: getFont
Return Type: ResourceLocation
ZenScript Copy// Style.getFont() as ResourceLocation
myStyle.getFont();
Name: getInsertion
Return Type: invalid
ZenScript Copy// Style.getInsertion() as invalid
myStyle.getInsertion();
Name: isBold
Return Type: boolean
ZenScript Copy// Style.isBold() as boolean
myStyle.isBold();
Name: isEmpty
Return Type: boolean
ZenScript Copy// Style.isEmpty() as boolean
myStyle.isEmpty();
Name: isItalic
Return Type: boolean
ZenScript Copy// Style.isItalic() as boolean
myStyle.isItalic();
Name: isObfuscated
Return Type: boolean
ZenScript Copy// Style.isObfuscated() as boolean
myStyle.isObfuscated();
Name: isStrikethrough
Return Type: boolean
ZenScript Copy// Style.isStrikethrough() as boolean
myStyle.isStrikethrough();
Name: isUnderlined
Return Type: boolean
ZenScript Copy// Style.isUnderlined() as boolean
myStyle.isUnderlined();
Name: withBold
Return Type: Style
ZenScript CopyStyle.withBold(value as invalid) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo invalid | Descrizione No Description Provided |
Name: withColor
Return Type: Style
ZenScript CopyStyle.withColor(color as int) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro color | Tipo int | Descrizione No Description Provided |
Name: withColor
Return Type: Style
ZenScript CopyStyle.withColor(formatting as ChatFormatting) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro formattazione | Tipo ChatFormatting | Descrizione No Description Provided |
Name: withFont
Return Type: Style
ZenScript CopyStyle.withFont(fontId as ResourceLocation) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro fontId | Tipo ResourceLocation | Descrizione No Description Provided |
Name: withInsertion
Return Type: Style
ZenScript CopyStyle.withInsertion(content as invalid) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro contenuto | Tipo invalid | Descrizione No Description Provided |
Name: withItalic
Return Type: Style
ZenScript CopyStyle.withItalic(value as bool?) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo bool? | Descrizione No Description Provided |
Name: withObfuscated
Return Type: Style
ZenScript CopyStyle.withObfuscated(value as invalid) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo invalid | Descrizione No Description Provided |
Name: withStrikethrough
Return Type: Style
ZenScript CopyStyle.withStrikethrough(value as invalid) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo invalid | Descrizione No Description Provided |
Name: withUnderlined
Return Type: Style
ZenScript CopyStyle.withUnderlined(value as invalid) as Style
Parametro | Tipo | Descrizione |
---|---|---|
Parametro valore | Tipo invalid | Descrizione No Description Provided |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome bold | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome color | Tipo TextColor | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome empty | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome font | Tipo ResourceLocation | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome inserimento | Tipo invalid | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome italic | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome obfucated | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome strikethrough | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome sottolineato | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |