MCText组件
Link to mctext组件
导入类
Link to 导入类
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.util.text.MCTextComponent;
Static Methods
Link to static-methods
Name: createStringTextComponent
Return Type: MCTextComponent
ZenScript CopyMCTextComponent.createStringTextComponent(text as string) as MCTextComponent
参数 | 类型 | 描述 |
---|---|---|
参数 文本 | 类型 string | 描述 No Description Provided |
Name: createTranslationTextComponent
Return Type: MCTextComponent
ZenScript CopyMCTextComponent.createTranslationTextComponent(translationKey as string) as MCTextComponent
参数 | 类型 | 描述 |
---|---|---|
参数 translationKey | 类型 string | 描述 No Description Provided |
Name: createTranslationTextComponent
Return Type: MCTextComponent
ZenScript CopyMCTextComponent.createTranslationTextComponent(translationKey as string, args as Object[]) as MCTextComponent
参数 | 类型 | 描述 |
---|---|---|
参数 translationKey | 类型 string | 描述 No Description Provided |
参数 args | 类型 Object[] | 描述 No Description Provided |
Casters
Link to casters
结果类型 | 是否隐藏 |
---|---|
结果类型 string | 是否隐藏 false |
使用方式
Link to 使用方式
Name: appendSibling
Return Type: MCTextComponent
ZenScript CopyMCTextComponent.appendSibling(component as MCTextComponent) as MCTextComponent
参数 | 类型 | 描述 |
---|---|---|
参数 component | 类型 MCText组件 | 描述 No Description Provided |
Name: appendText
Return Type: MCTextComponent
ZenScript CopyMCTextComponent.appendText(text as string) as MCTextComponent
参数 | 类型 | 描述 |
---|---|---|
参数 文本 | 类型 string | 描述 No Description Provided |
Name: copyRaw
Return Type: MCTextComponent
ZenScript Copy// MCTextComponent.copyRaw() as MCTextComponent
MCTextComponent.createStringTextComponent("Hello World!").copyRaw();
Name: deepCopy
Return Type: MCTextComponent
ZenScript Copy// MCTextComponent.deepCopy() as MCTextComponent
MCTextComponent.createStringTextComponent("Hello World!").deepCopy();
Name: getString
Return Type: string
ZenScript Copy// MCTextComponent.getString() as string
MCTextComponent.createStringTextComponent("Hello World!").getString();
Name: getStringTruncated
Return Type: string
ZenScript CopyMCTextComponent.getStringTruncated(maxLen as int) as string
参数 | 类型 | 描述 |
---|---|---|
参数 maxLen | 类型 int | 描述 No Description Provided |
Name: getStyle
Return Type: MCStyle
ZenScript Copy// MCTextComponent.getStyle() as MCStyle
MCTextComponent.createStringTextComponent("Hello World!").getStyle();
Name: getTranslationKey
If this is a Translation Text Component, return the actual translation key used for localization. If this is not a Translation Text Component, returns an empty string.
Returns: the translation key or an empty string.
Return Type: string
ZenScript Copy// MCTextComponent.getTranslationKey() as string
MCTextComponent.createStringTextComponent("Hello World!").getTranslationKey();
Name: getUnformattedComponentText
Return Type: string
ZenScript Copy// MCTextComponent.getUnformattedComponentText() as string
MCTextComponent.createStringTextComponent("Hello World!").getUnformattedComponentText();
Name: setStyle
Return Type: MCTextComponent
ZenScript CopyMCTextComponent.setStyle(style as MCStyle) as MCTextComponent
参数 | 类型 | 描述 |
---|---|---|
参数 样式 | 类型 MC样式 | 描述 No Description Provided |
运算符
Link to 运算符
Name: ADD
ZenScript CopymyMCTextComponent + component as MCTextComponent
Name: CAT
ZenScript CopymyMCTextComponent ~ component as MCTextComponent
Name: SHL
ZenScript CopymyMCTextComponent << component as MCTextComponent
名称 | 类型 | 可获得 | 可设置 | 描述 |
---|---|---|---|---|
名称 formattedText | 类型 string | 可获得 true | 可设置 false | 描述 No Description Provided |
名称 siblings | 类型 stdlib.List<MCTextComponent> | 可获得 true | 可设置 false | 描述 No Description Provided |
名称 样式 | 类型 MC样式 | 可获得 true | 可设置 false | 描述 No Description Provided |
名称 translationKey | 类型 string | 可获得 true | 可设置 false | 描述 If this is a Translation Text Component, return the actual translation key used for localization. If this is not a Translation Text Component, returns an empty string. |
名称 unformattedComponentText | 类型 string | 可获得 true | 可设置 false | 描述 No Description Provided |