A Minecraft Bedrock GUI-Based Addon maker, for Windows, Linux, and Chromebook.
Minecraft bedrock Addons are experimental, and very hard to create compared to Java mods. With this tool, you will be able to create addons, that fully showcase MCPEs addon capibilitys, and unlike other tools, like MCreator, This will be updated along side Minecraft, and it will let you live test your mods, using Minecrafts built-in tools.
FOR A TUTORIAL, READ WIKI
This app was made with Visual Studio Code, and it is fully setup to be used with it.
bedrockR is made with Java 21, and it is tested, and known to work with OpenJDK. If you don't know which OpenJDK distro to use, use Microsoft's.
It is reccomened to use Visual Studio code to make edits. Here are the extension I reccomend:
- Debugger for Java
- Extension Pack for Java
- Gradle for Java
- Project Manager for Java, and
- Language Support for Java
If you can, use this for building when convenient.
Building a JAR can be done with one command.
(Make sure you are cd'ed into the source code directory)
-
Run the command;
./gradlew shadowJar (powershell) gradlew shadowJar (cmd prompt) -
Now you should be able to find the JAR in
app/build/builtJars
The following commands can be used to make certain builds of bedrockR. (You can only run an OS' build command on the target os. e.g., you can only run jpackageWIN on Windows.)
./gradlew jpackageWIN - Make a Windows installer.
./gradlew jpackageDEB - Make a Debian installer.
./gradlew jpackageRPM - Make a RPM installer.
./gradlew jpackagePORTABLE - Make a portable copy of bedrockR for windows, only on windows.
Now check app/build/builtDist, and you should see your platform's distribution. (NOTE: THIS DIRECTORY CAN ONLY HOLD ONE DISTRO AT A TIME)
