This repository contains example behavior and resource packs, used for showcasing various mechanics on the Bedrock Wiki.
You can find the latest mcaddons
here.
Please, follow this style guide! After your commit, packs in the "Downloads" release will be updated.
Please add a meta.json
file to the root of the pack with the name, type, and tags keys set. For example:
{
"name": "Custom Item Models",
"type": "mcaddon",
"tags": ["items"]
}
name
- the name for the add-ontype
- "mcaddon" or "mcpack", used to determine how the add-on should be packaged.tags
- optional should include what is included in the add-on e.g. "blocks", "items", "entities"
If you instead want to package an add-on as a mcpack, add the archive_root
key like below:
{
"name": "mcfunction timers",
"type": "mcpack",
"archive_root": "bp",
"tags": ["functions"]
}