Heat component (Mekanism)
Add Mekanism heat capability for your machine.
This component requires Custom Machinery Mekanism to be installed.
This is the component that let your machine interact with the Mekanism heat system, it is also compatible with any mods that make use of Mekanism heat.
Heat component is defined as a unique machine component, meaning that you can only have 1 per machine.
If you try to define more than 1 heat component only the first will be used.
The heat component make use of the Config property (same as items, fluid, energy, gas etc...) to configure which sides of the machine can input or output heat.
By default all sides of the machine will be in input only mode.
Heat component is defined with "type": "custommachinery:heat"
in the json.
Properties
The heat component has only 1 mandatory property and 5 optional properties :
Mandatory properties
"type": "custommachinery:heat" //Mandatory to define a heat component.
Optional properties
ConfigExample
The most basic heat component :
{
"type": "custommachinery:heat"
}
A heat component that will allow outputing heat on all sides :
{
"type": "custommachinery:heat",
"config": {
"default": "output"
}
}
Last updated