HeatCondition
Link to heatcondition
导入类
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 mods.create.HeatCondition;
Enum Constants
Link to enum-constants
HeatCondition is an enum. It has 3 enum constants. They are accessible using the code below.
ZenScript Copy<constant:create:heat_condition:none>
<constant:create:heat_condition:heated>
<constant:create:heat_condition:superheated>
使用方式
Link to 使用方式
Name: getColor
Gets the color of this heat condition.
Returns: The color of this heat condition.
Return Type: int
ZenScript Copy// HeatCondition.getColor() as int
myHeatCondition.getColor();
Name: getCommandString
Return Type: string
ZenScript Copy// HeatCondition.getCommandString() as string
myHeatCondition.getCommandString();
Name: getTranslationKey
Gets the translation key of this heat condition.
Returns: The translation key of this heat condition.
Return Type: string
ZenScript Copy// HeatCondition.getTranslationKey() as string
myHeatCondition.getTranslationKey();
名称 | 类型 | 可获得 | 可设置 | 描述 |
---|---|---|---|---|
名称 color | 类型 int | 可获得 true | 可设置 false | 描述 Gets the color of this heat condition. |
名称 commandString #命令字符串 | 类型 string | 可获得 true | 可设置 false | 描述 No Description Provided |
名称 translationKey | 类型 string | 可获得 true | 可设置 false | 描述 Gets the translation key of this heat condition. |