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
Copy
import crafttweaker.api.text.Component;

已实现的接口

Link to 已实现的接口

Component implements the following interfaces. That means all methods defined in these interfaces are also available in Component

Name: copy

Return Type: MutableComponent

ZenScript
Copy
// Component.copy() as MutableComponent

myComponent.copy();

Name: getContents

Return Type: string

ZenScript
Copy
// Component.getContents() as string

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
Copy
Component.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
类型
string
可获得
true
可设置
false
名称
siblings
类型
stdlib.List<Component>
可获得
true
可设置
false
名称
样式
类型
Style
可获得
true
可设置
false