You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create Propulsion registers these peripherals when CC: Tweaked is installed. Peripheral types match Create’s SyncedPeripheral pattern (mainThread Lua calls run on the server).
All thrust readouts and thrust-derived physics use the shared thrustUnitsPerKn physics config value (default 1000) so displayed values match assembled/physics behavior.
While any computer is attached to a thruster peripheral:
The block uses peripheral throttle (normalized 0.0 … 1.0), driven by Lua (setPower, setThrust, etc.).
getPower() returns that peripheral throttle (same scale redstone would use: redstone / 15).
World redstone signals next to the block do not drive thrust until the computer disconnects.
When the computer detaches, peripheral throttle is cleared and the thruster returns to normal redstone-controlled behavior.
Fluid thrusters, solid fuel thrusters, and ion thrusters use different peripheral type strings (thruster, solid_fuel_thruster, ion_thruster) so scripts can tell them apart.
Thruster (thruster)
Fuel / chemical thrusters only (not ion).
Method
Returns
Notes
getObstruction()
number
Returns unobstructed-block count from the obstruction scan
setPower(redstonePower)
—
redstonePower: 0 … 15; sets peripheral throttle
setPowerNormalized(power)
—
power: 0.0 … 1.0
getPower()
number
Normalized throttle 0.0 … 1.0
getCurrentThrustPN()
number
getCurrentThrustKN()
number
getDisplayedThrustPN()
number
Tooltip-scale thrust
getDisplayedThrustKN()
number
getAirflowMs()
number
getFuelAmountMb()
number
getFuelCapacityMb()
number
tanks()
table
pushFluid(toName[, limit[, fluidName]])
number
pullFluid(fromName[, limit[, fluidName]])
number
Solid fuel thruster (solid_fuel_thruster)
Item-fuel thrusters: same throttle and thrust readouts as Thruster, but no fluid API. One fuel item in a single slot on the back face. Item I/O uses generic inventory methods on that face.
Base thrust target from scroll / config (before throttle & atmosphere)
getTargetThrustKN()
number
getCurrentThrustPN()
number
getCurrentThrustKN()
number
getDisplayedThrustPN()
number
getDisplayedThrustKN()
number
getAirflowMs()
number
getObstruction()
number
Returns unobstructed-block count from the obstruction scan
Vector thruster (vector_thruster)
Standard fuel vector thruster (not liquid fuel cell, not creative). Direction + throttle only; attach/detach follows Throttle control.
Direction (-1 … 1 plane)
Method
Notes
getVectorX() / getVectorY()
Current nozzle direction components
getTargetVectorX() / getTargetVectorY()
Target
setVectorX(x)
x clamped -1.0 … 1.0
setVectorY(y)
y clamped -1.0 … 1.0
setVector(x, y)
Both clamped
Throttle (0 … 15 or normalized)
Method
Notes
setThrust(power)
power: 0 … 15 → peripheral throttle
setThrustNormalized(power)
power: 0.0 … 1.0
setPower(power)
Alias of setThrust
setPowerNormalized(power)
Alias of setThrustNormalized
getThrust()
0 … 15 scale
getPower()
Normalized 0.0 … 1.0
Liquid vector thruster (liquid_vector_thruster)
Liquid-fuel vector thruster: same direction and throttle methods as Vector thruster (vector_thruster) above, plus fluid tank passthrough methods. No setThrustOutput / override helpers (those exist only on Creative vector thruster).
Separate peripheral implementation (CreativeVectorThrusterPeripheral): direction + throttle match Vector thruster, plus override APIs below.
Direction (-1 … 1 plane)
Method
Notes
getVectorX() / getVectorY()
Current nozzle direction components
getTargetVectorX() / getTargetVectorY()
Target
setVectorX(x)
x clamped -1.0 … 1.0
setVectorY(y)
y clamped -1.0 … 1.0
setVector(x, y)
Both clamped
Throttle (0 … 15 or normalized)
Method
Notes
setThrust(power)
power: 0 … 15 → peripheral throttle
setThrustNormalized(power)
power: 0.0 … 1.0
setPower(power)
Alias of setThrust
setPowerNormalized(power)
Alias of setThrustNormalized
getThrust()
0 … 15 scale
getPower()
Normalized 0.0 … 1.0
Base thrust override (creative only)
Method
Returns
Notes
setThrustOutput(thrustOutputPn)
—
Base thrust in pN. Clamped to the same maximum as the on-block scroll: creativeVectorThrusterMaxThrust (kN from config) × thrustUnitsPerKn (physics config, default 1000). Pass < 0 (e.g. -1) to clear override and use scroll thrust again.
clearThrustOutput()
—
Same as setThrustOutput(-1) — removes Lua thrust override