Create Kinetic (Compat)
What are Create Kinetic Ports?
Create Kinetic ports are created to provide support for the Create Mod. The port takes the rotation speed of a connected shaft-like block.
Input ports of this type can read the rotation speed and given that it is more than a recipe ingredient's speed the recipe can run. Inputs also add a defined amount of stress impact.
Output ports of this type will produce rotation at the recipe ingredient's defined speed whilst giving a defined stress capacity to the kinetic network.
How to create a Kinetic Port?
{
"id": "my_kinetic_port",
"controllerIds": "mm:controller_a",
"name": "My Create Kinetic",
"type": "mm:create/kinetic",
"config": {
"stress": 4
}
}
"type": "mm:create/kinetic"
The "type"
field for a kinetic port always has the value of mm:create/kinetic
, this tells the config reader to look for kinetic port specific fields within the "config"
object field.
"config": {
"stress": 4
}
Inside the "config"
object, the "stress"
key defines either the stress capacity for the output variant, or the stress impact for the input variant.
Last updated