NamePlateResult
Link to nameplateresult
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.entity.NamePlateResult;
Metodi
Link to metodi
Name: getContent
Gets the current content of the nameplate. This can be changed by mods.
Returns: The current nameplate content.
Return Type: MCTextComponent
ZenScript Copy// NamePlateResult.getContent() as MCTextComponent
myNamePlateResult.getContent();
Name: getOriginalContent
Gets the original content of the nameplate. This can not be changed by mods.
Returns: The original nameplate content.
Return Type: MCTextComponent
ZenScript Copy// NamePlateResult.getOriginalContent() as MCTextComponent
myNamePlateResult.getOriginalContent();
Name: setAllow
Forces the nameplate to be visible even when it would otherwise not be.
Return Type: void
ZenScript Copy// NamePlateResult.setAllow() as void
myNamePlateResult.setAllow();
Name: setContent
Sets the new content of the nameplate.
Return Type: void
ZenScript CopyNamePlateResult.setContent(content as MCTextComponent) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro contenuto | Tipo MCTextComponent | Descrizione The new nameplate contents. |
Name: setDefault
Sets the default vanilla behaviour of rendering nameplates.
Return Type: void
ZenScript Copy// NamePlateResult.setDefault() as void
myNamePlateResult.setDefault();
Name: setDeny
Forces the display name to not render even when it should.
Return Type: void
ZenScript Copy// NamePlateResult.setDeny() as void
myNamePlateResult.setDeny();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome contenuto | Tipo MCTextComponent | Ha Getter sì | Ha Setter sì | Descrizione Gets the current content of the nameplate. This can be changed by mods. |
Nome originalContent | Tipo MCTextComponent | Ha Getter sì | Ha Setter no | Descrizione Gets the original content of the nameplate. This can not be changed by mods. |