IEnergyStorage
Link to ienergystorage
导入类
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.capability.IEnergyStorage;
使用方式
Link to 使用方式
Name: canExtract
Checks if energy can be extracted from this storage.
Returns: true if the storage can be extracted from, false otherwise.
Return Type: boolean
ZenScript Copy// IEnergyStorage.canExtract() as boolean
myIEnergyStorage.canExtract();
Name: canReceive
Checks if this storage can receive energy.
Returns: true if this storage can receive energy, false otherwise.
Return Type: boolean
ZenScript Copy// IEnergyStorage.canReceive() as boolean
myIEnergyStorage.canReceive();
Name: extractEnergy
Extracts energy from the storage.
Returns: the amount of energy that was extracted.
Return Type: int
ZenScript Copy// IEnergyStorage.extractEnergy(maxExtract as int, simulate as boolean) as int
myIEnergyStorage.extractEnergy(400, false);
参数 | 类型 | 描述 |
---|---|---|
参数 maxExtract | 类型 int | 描述 The max amount of energy to be extracted. |
参数 simulate | 类型 布尔值 | 描述 If the energy should actually be extracted or not. |
Name: getEnergyStored
Gets the amount of energy stored.
Returns: The amount of energy stored.
Return Type: int
ZenScript Copy// IEnergyStorage.getEnergyStored() as int
myIEnergyStorage.getEnergyStored();
Name: getMaxEnergyStored
Gets the max energy that can be stored.
Returns: The max energy that can be stored.
Return Type: int
ZenScript Copy// IEnergyStorage.getMaxEnergyStored() as int
myIEnergyStorage.getMaxEnergyStored();
Name: receiveEnergy
Adds energy to the storage.
Returns: the amount of energy that was accepted.
Return Type: int
ZenScript Copy// IEnergyStorage.receiveEnergy(maxReceive as int, simulate as boolean) as int
myIEnergyStorage.receiveEnergy(300, false);
参数 | 类型 | 描述 |
---|---|---|
参数 maxReceive | 类型 int | 描述 The max amount of energy to be inserted. |
参数 simulate | 类型 布尔值 | 描述 If the energy should actually be inserted or not. |
名称 | 类型 | 可获得 | 可设置 | 描述 |
---|---|---|---|---|
名称 canExtract | 类型 布尔值 | 可获得 true | 可设置 false | 描述 Checks if energy can be extracted from this storage. |
名称 canReceive | 类型 布尔值 | 可获得 true | 可设置 false | 描述 Checks if this storage can receive energy. |
名称 energyStored | 类型 int | 可获得 true | 可设置 false | 描述 Gets the amount of energy stored. |
名称 maxEnergyStored | 类型 int | 可获得 true | 可设置 false | 描述 Gets the max energy that can be stored. |