Links
Tags
Creators
Details
1.0.0
Compatibility
Required content
Changes
Initial release
CraftStudio 1.0.0 introduces a client-side visual IDE for creating Minecraft resource packs.
Added
- CraftStudio project creation, opening, and recent-project support.
- Searchable Minecraft block and item catalog.
- Blockstate, item definition, model, texture, animation, and atlas dependency resolution.
- Clear grouped dependency explanations.
- Complete, unique-only, and custom asset bundles.
- Interactive block and item previews.
- Block and inventory preview modes.
- External image-editor integration.
- Project file watching and preview refreshing.
- Optional automatic Minecraft resource reload.
- JSON, image, dependency, atlas, metadata, and export validation.
- Safe ZIP export to the current instance's
resourcepacksfolder. - Custom ZIP export destinations.
- Existing ZIP backup, export reports, and SHA-256 verification.
- Customizable F8 keybinding.
Compatibility
- Minecraft 1.21.11
- Fabric Loader 0.19.3 or newer
- Fabric API required
- Java 21
- Client-side only
Current scope
This release focuses on blocks and items. Support for more Minecraft versions and additional asset categories will be added in future updates.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:MzkE7gB3:b7quWpDv"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:MzkE7gB3:b7quWpDv"
}

