Component
Link to component
导入类
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.text.Component;
已实现的接口
Link to 已实现的接口
Component implements the following interfaces. That means all methods defined in these interfaces are also available in Component
Static Methods
Link to static-methods
Name: empty
Return Type: MutableComponent
ZenScript Copy// Component.empty() as MutableComponent
Component.empty();
Name: keybind
Return Type: MutableComponent
ZenScript CopyComponent.keybind(name as string) as MutableComponent
参数 | 类型 |
---|---|
参数 name(名称) | 类型 string |
Name: literal
Return Type: MutableComponent
ZenScript CopyComponent.literal(content as string) as MutableComponent
参数 | 类型 |
---|---|
参数 内容 | 类型 string |
Name: nullToEmpty
Return Type: Component
ZenScript CopyComponent.nullToEmpty(content as string?) as Component
参数 | 类型 |
---|---|
参数 内容 | 类型 string? |
Name: score
Return Type: MutableComponent
ZenScript CopyComponent.score(name as string, objective as string) as MutableComponent
参数 | 类型 |
---|---|
参数 name(名称) | 类型 string |
参数 objective | 类型 string |
Name: selector
Return Type: MutableComponent
ZenScript CopyComponent.selector(pattern as string, separator as Component?) as MutableComponent
参数 | 类型 | 可选 |
---|---|---|
参数 pattern | 类型 string | 可选 false |
参数 separator | 类型 Component? | 可选 true |
Name: translatable
Return Type: MutableComponent
ZenScript CopyComponent.translatable(content as string, args as Component[]) as MutableComponent
参数 | 类型 |
---|---|
参数 内容 | 类型 string |
参数 args | 类型 Component[] |
Name: translatable
Return Type: MutableComponent
ZenScript CopyComponent.translatable(content as string, args as string[]) as MutableComponent
参数 | 类型 |
---|---|
参数 内容 | 类型 string |
参数 args | 类型 string[] |
使用方式
Link to 使用方式
Name: copy
Return Type: MutableComponent
ZenScript Copy// Component.copy() as MutableComponent
myComponent.copy();
Name: getContents
Return Type: ComponentContents
ZenScript Copy// Component.getContents() as ComponentContents
myComponent.getContents();
Name: getSiblings
Return Type: stdlib.List<Component>
ZenScript Copy// Component.getSiblings() as stdlib.List<Component>
myComponent.getSiblings();
Name: getString
Return Type: string
ZenScript CopyComponent.getString(maxLength as int) as string
参数 | 类型 |
---|---|
参数 maxLength | 类型 int |
Name: getStyle
Return Type: Style
ZenScript Copy// Component.getStyle() as Style
myComponent.getStyle();
Name: plainCopy
Return Type: MutableComponent
ZenScript Copy// Component.plainCopy() as MutableComponent
myComponent.plainCopy();
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 contents | 类型 ComponentContents | 可获得 true | 可设置 false |
名称 siblings | 类型 stdlib.List<Component> | 可获得 true | 可设置 false |
名称 样式 | 类型 Style | 可获得 true | 可设置 false |