Create: Dragons Plus is a shared library for DragonsPlusMinecraft Create add-ons. This fork targets Minecraft 26.1.2, Fabric, and Create-Fly 6.0.9-4.
The active source is MarbleGateKeeper/CreateDragonsPlus-Fly. The seven optional integrations from the NeoForge project are not included in this first Fabric release.
repositories {
maven { url = 'https://maven.dragons.plus/releases' }
}
dependencies {
modImplementation("plus.dragons.createdragonsplus:create-dragons-plus-fly-26.1.2:${create_dragons_plus_version}")
}The published library exposes Fabric API and Create-Fly through Gradle api/Maven compile dependencies. Consumers normally do not need to declare them again. The supported Create-Fly range is >=6.0.9-4 <6.1.0.
The current preview is 1.11.4-p1; preview numbering restarts for the Minecraft 26.1.2 branch. It retains the server-safe Blaze machine foundations and stress configuration for downstream addons. Blaze renderers, Visuals, model providers, and contraption render attachments are client-only APIs.
Add-ons that provide dye variants should declare the early entrypoint below. Providers are applied in mod-ID order, duplicate variant IDs are rejected, and the registry is frozen before blocks and fluids are bootstrapped.
{
"entrypoints": {
"create_dragons_plus": [
"example.addon.ExampleDragonsPlusPlugin"
]
}
}Java 25 is required. The main verification commands are:
./gradlew spotlessCheck test compileApiTestJava build
./gradlew runDatagen
Create-Fly is published on CurseForge as project 1346281. Modrinth and CurseForge releases of this project declare create-fly as a required dependency.