Attribute
Link to attribute
Импорт класса
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.entity.attribute.Attribute;
Утилиты
Link to утилиты
Result Type | Является неявным |
---|---|
Result Type string | Является неявным false |
Методы
Link to методы
Name: getCommandString
Gets the attribute bracket handler syntax for this Attribute.
E.G. <attribute:minecraft:generic.max_health>
Returns: The attribute bracket handler syntax for this Block.
Return Type: string
ZenScript Copy// Attribute.getCommandString() as string
myAttribute.getCommandString();
Name: getDefaultValue
Gets the default value for this Attribute.
Returns: The default value for this Attribute.
Return Type: double
ZenScript Copy// Attribute.getDefaultValue() as double
myAttribute.getDefaultValue();
Name: getRegistryName
Return Type: ResourceLocation
ZenScript Copy// Attribute.getRegistryName() as ResourceLocation
myAttribute.getRegistryName();
Name: isClientSyncable
Should this attribute be synced to the client.
Returns: True if synced. False otherwise.
Return Type: boolean
ZenScript Copy// Attribute.isClientSyncable() as boolean
myAttribute.isClientSyncable();
Name: sanitizeValue
Sanitizes the given value for this Attribute.
Returns: The sanitized value.
Return Type: double
ZenScript Copy// Attribute.sanitizeValue(value as double) as double
myAttribute.sanitizeValue(4);
Параметр | Тип | Описание |
---|---|---|
Параметр value | Тип double | Описание The given value to sanitized. |
Свойства
Link to свойства
Название | Тип | Имеет Getter | Имеет Setter | Описание |
---|---|---|---|---|
Название clientSyncable | Тип boolean | Имеет Getter true | Имеет Setter false | Описание Should this attribute be synced to the client. |
Название commandString | Тип string | Имеет Getter true | Имеет Setter false | Описание Gets the attribute bracket handler syntax for this Attribute. E.G. <attribute:minecraft:generic.max_health> |
Название defaultValue | Тип double | Имеет Getter true | Имеет Setter false | Описание Gets the default value for this Attribute. |
Название registryName | Тип ResourceLocation | Имеет Getter true | Имеет Setter false | Описание |