Create includes built-in compatibility layers for several popular mods. These integrations are optional soft dependencies — Create works without them, but enables extra features when they’re present. All compat classes live underDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Creators-of-Create/Create/llms.txt
Use this file to discover all available pages before exploring further.
com.simibubi.create.compat.* and are only loaded when the corresponding mod is detected on the classpath.
CC:Tweaked (ComputerCraft)
Create provides aComputerBehaviour system that lets computers interact with certain Create blocks via the standard CC:Tweaked peripheral API. The integration is enabled by default when CC:Tweaked is present (cc_tweaked_version = 1.116.1 in Create’s build).
Computer Events
Create blocks fire computer events by callingAbstractComputerBehaviour.prepareComputerEvent(ComputerEvent) on the block entity’s behaviour. The following event classes are defined in com.simibubi.create.compat.computercraft.events:
KineticsChangeEvent
Fired when a kinetic block’s network state changes.
StationTrainPresenceEvent
Fired when a train is imminent, arrives at, or departs from a Train Station.
TrainPassEvent
Fired when a train passes a signal or detector block.
SignalStateChangeEvent
Fired when a railway signal changes state.
PackageEvent
Fired when a package passes through a Package Port.
RepackageEvent
Fired when a package is repackaged by a Package Port.
AbstractComputerBehaviour
Blocks that support computer interaction add anAbstractComputerBehaviour to their block entity. Your addon can fire events to any attached computer by calling prepareComputerEvent:
Lua Example
Computers can listen to Create events from Lua usingos.pullEvent:
JEI / REI (Recipe Viewers)
All Create processing recipes appear automatically in JEI and REI without any extra configuration. Create registers a dedicated recipe category for each machine type:- Crushing Wheels
- Millstone
- Mechanical Press (Pressing)
- Mechanical Press + Basin (Compacting)
- Mechanical Mixer + Basin (Mixing)
- Deployer
- Mechanical Saw (Cutting)
- Encased Fan (Splashing, Haunting, and any custom fan processing types)
- Sequenced Assembly
create-client.toml under syncRecipeViewerSearch with four modes: SYNC_BOTH, SYNC_TO_VIEWER, SYNC_FROM_VIEWER, and NONE.
Curios
Create uses Curios API slots for wearable equipment items:- Engineer’s Goggles — head slot
- Back Tank — back slot
- Other Create equipment items
9.2.2 is the version targeted in Create’s current build. If Curios is absent, Create falls back to vanilla equipment slots where possible.
Farmer’s Delight
When Farmer’s Delight is present (farmers_delight_version = 1.21.1-1.2.9), Create adds Cutting Board recipes for relevant Create materials. This integration is enabled by farmers_delight_enable = true in Create’s build configuration.
Sodium
Create’s Flywheel-based GPU rendering includes a Sodium compatibility layer targeting Sodium0.6.9. This allows Flywheel’s instanced rendering to coexist with Sodium’s chunk rendering pipeline. If Sodium is absent, Flywheel falls back to its own rendering path.
Xaero’s Map
When Xaero’s Minimap or Xaero’s World Map is installed, Create overlays train positions and railway network information on the map. This feature was refined in Create 6.0.10.Writing Your Own Compat
Guard class loading
Keep all references to target-mod classes inside a dedicated compat class that is only instantiated when the mod is present. Direct class references in your main class will cause a crash if the target mod is absent.
Create’s own compat classes under
com.simibubi.create.compat.* are not public API. Their internal structure, class names, and event signatures may change between versions. Reference Create’s compat code for inspiration, but build your own compat layer independently.