File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # Wiki Addons
1+ # Bedrock Examples
22
33This repository contains example behavior and resource packs, used for showcasing various mechanics on the Bedrock Wiki.
4- You can find the latest ` mcaddons ` [ here] ( https://github.com/Bedrock-OSS/wiki-addon /releases/tag/download ) .
4+ You can find the latest ` mcaddons ` [ here] ( https://github.com/Bedrock-OSS/bedrock-examples /releases/tag/download ) .
55
6- # Adding new content
6+ ## Adding Resources
77
8- Please, follow the [ style] ( https://wiki.bedrock.dev/meta/style-guide.html ) !
9- After your commit, packs in release will be updated.
8+ Please, follow this [ style guide ] ( https://wiki.bedrock.dev/meta/style-guide.html ) !
9+ After your commit, packs in the "Downloads" release will be updated.
1010
1111Please add a ` meta.json ` file to the root of the pack with the name, type, and tags keys set. For example:
12+
1213``` json
1314{
1415 "name" : " Custom Item Models" ,
1516 "type" : " mcaddon" ,
1617 "tags" : [" items" ]
1718}
1819```
20+
1921- ` name ` - the name for the add-on
2022- ` type ` - "mcaddon" or "mcpack", used to determine how the add-on should be packaged.
2123- ` tags ` - optional should include what is included in the add-on e.g. "blocks", "items", "entities"
24+
2225If you instead want to package an add-on as a mcpack, add the ` archive_root ` key like below:
26+
2327``` json
2428{
2529 "name" : " mcfunction timers" ,
2630 "type" : " mcpack" ,
2731 "archive_root" : " bp" ,
2832 "tags" : [" functions" ]
2933}
30- ```
34+ ```
You can’t perform that action at this time.
0 commit comments