English | 简体中文
_Game Version Notice: Only for Minecraft Java Edition 1.20.6
Note: This project is currently in its early stages of development and is not yet ready for use.
Bedrock Loader is a pioneering mod for Minecraft Java Edition, designed to bridge the gap between Java and Bedrock editions by allowing the loading of Bedrock addons directly into the Java version. Developed as a Fabric mod, Bedrock Loader aims to enhance the Minecraft experience by integrating the diverse world of Bedrock addons, including custom blocks, models, and entities, into the Java edition's rich ecosystem.
Before you begin, ensure you have Fabric Loader and Fabric API installed in your Minecraft Java Edition. Follow these steps to set up Bedrock Loader:
- Download the latest version of Bedrock Loader from the Releases section.
- Place the downloaded
.jarfile in yourmodsfolder located in your Minecraft directory. - Download and install dependence mods: Fabric API and Fabric Language Kotlin.
- Launch Minecraft Java Edition using the Fabric profile.
To load Bedrock addons with Bedrock Loader, follow these steps:
- Place your Bedrock edition addons (
.zipor.mcpackfiles) into theconfig/bedrock-loaderdirectory within your Minecraft game directory. If theconfig/bedrock-loaderdirectory does not exist, create it manually. - Restart your Minecraft game. Bedrock Loader will automatically detect and load the addons into your Minecraft Java Edition.
Bedrock Loader supports automatic synchronization of resource packs from a remote server. This feature allows server administrators to centrally manage and distribute addons to clients.
The mod uses two separate directories to manage addons:
config/bedrock-loader/- For manually placed addons (never modified by remote sync)config/bedrock-loader/remote/- For remotely downloaded addons (automatically managed)
This separation ensures your custom addons are never affected by remote synchronization.
Create a client.yml file in the config/bedrock-loader/ directory with the following configuration:
# Enable or disable remote synchronization
enabled: true
# Server URL (including protocol and port)
serverUrl: "http://localhost:8080"
# HTTP request timeout in seconds
timeoutSeconds: 10
# Show UI progress window during sync
showUI: true
# Auto-cancel sync on any error
autoCancelOnError: false
# Automatically remove packs that have been deleted from the server
# Only affects packs in the remote/ directory
autoCleanupRemovedPacks: trueenabled: Enable/disable remote synchronization. Set tofalseto use only local packs.serverUrl: The HTTP server URL where resource packs are hosted.timeoutSeconds: Network request timeout duration.showUI: Display a graphical progress window during download (client-side only).autoCancelOnError: Whether to cancel synchronization if any error occurs.autoCleanupRemovedPacks: Automatically delete remotely downloaded packs that no longer exist on the server.
- On game startup, the client connects to the configured server
- The server provides a manifest of available resource packs with MD5 checksums
- The client compares local packs (in
remote/) with the server manifest - Missing or outdated packs are automatically downloaded to
remote/ - If enabled, packs deleted from the server are removed from
remote/ - All packs (both manual and remote) are loaded into the game
To run and package Bedrock Loader for distribution, use the following Gradle tasks:
-
Run in Development Environment:
./gradlew runClient
-
Package for Release:
./gradlew build
The packaged mod will be in the build/libs directory, ready for distribution.
Bedrock Loader is currently in its early stages of development.
A significant portion of features has yet to be implemented, with our current focus on architectural needs such as custom blocks and models, as well as entity models.
There are numerous bugs present, and the mod is nearly unusable in its current state.
We are actively working on addressing these issues and adding new features.
- Basic mod structure
- Addon loading & resource pack initialization
- Bedrock model baking
- Custom blocks
- Single cube texture
- collision boxes
- block states
- block models
- block entity
- block loot table
- block tags
- block sounds
- Items
- Entities