Create a pull request to submit or update plugins. Open an issue to report bugs within plugins and tag the author if possible.
To install a plugin, go to File > Plugins... and switch to the available tab. Find the plugin you want to use and click Install.
Blockbench supports two file structure systems.
The legacy format, where plugin Javascript files are saved directly in the plugins directory, was used by Blockbench 4.7 and older, and will continue to be supported for already existing plugins.
The new structure utilizes a separate directory per plugin in the plugins directory, which contains the plugin Javascript file, as well as other optional files.
The new structure will be used by Blockbench if the "min_version"
is set to 4.8.0 or higher.
The new structure is recommended for new plugins.
These are the files that can be added to the plugin directory
plugins/plugin_id/plugin_id.js
- The plugin Javascript file itselfplugins/plugin_id/about.md
: Markdown file containing the plugin about + instructions.plugins/plugin_id/icon.png
or icon.svg
: The plugin icon. Icons can be either PNG files with a resolution of 48x48, or they can be SVG files. To register an icon, set the icon field in the plugin meta data to the file name of the icon.plugins/plugin_id/members.yml
: This file allows you to list Github users who have your permission to do changes to your model, without me having to check back with you. You can add two types of members: maintainers
Can do anything with the plugin, including removing it entirely or modifying the members list. developers
can contribute new versions of the plugin.plugins/plugin_id/LICENSE.MD
: Add a license if you want to license your plugin as open source. You can choose your license here: choosealicense.complugins/plugin_id/changelog.json
: Add a changelog file for your plugin. Set has_changelog
to true
in the meta data to enable this. If you use VS Code (which I recommend), you'll automatically have autocomplete and validation for this file. Make sure to add new versions to the bottom of the file!plugins/plugin_id/src/**
: Use this directory to store the plugin source, if using a bundler.npm install
in the repository. This will install the Blockbench types that make it easier to use the Blockbench API.If you are writing a complex plugin and you are using a module bundler such as Webpack or Browserify, you are required to host your source code in this repository in the src
folder of your plugin's directory.
For plugins that use the legacy format, the source can be added to the src
folder at the root of the repository.
Check out the webpack_template and the existing source folders to see how to set it up.
In order to submit your plugin, you need to meet a few requirements:
Minecraft: Java Edition
, Minecraft: Bedrock Edition
(or Minecraft
). The same applies if it's designed for another specific game.
(Keep in mind that artists from many different areas use Blockbench, so provide some context in the meta data)plugins.json
.Once you are ready to submit your plugin, create a pull request.
Updates to plugins can be submitted via pull request.
In order for the plugin to auto update for users who already have it installed, the version number needs to be increased both in the plugin file and in plugins.json.
Optionally, a changelog can indicate what changed in a given update. See Current structure.
As explained above, you can add approved contributors in the members.yml
file.
For contributions from third parties, the original creator or maintainer of the plugin will be pinged in the respective Pull Request for permission.
If you have a preference, you can specify in membery.yml
under abandoned
what you would like to happen if you no longer contribute to the plugin and no longer approval third party contributions.
If unspecified, if you haven't replied within 4 weeks and are no longer active on Github, or if you haven't replied in 8 weeks despite being active, we may test and merge the contribution.
Some small changes like fixes for changed Blockbench APIs may be merged without asking for permission of the original creator.