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;
Implemented Interfaces
Link to implemented-interfaces
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
Параметр | Тип | Optional |
---|---|---|
Параметр pattern | Тип string | Optional false |
Параметр separator | Тип Component? | Optional 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();
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter |
---|---|---|---|
Название contents | Тип ComponentContents | Имеет Getter true | Имеет Setter false |
Название siblings | Тип stdlib.List<Component> | Имеет Getter true | Имеет Setter false |
Название стиль | Тип Стиль | Имеет Getter true | Имеет Setter false |