Skip to content

Commit 2f4c3ca

Browse files
authored
Updated repository name
1 parent ba7304c commit 2f4c3ca

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,34 @@
1-
# Wiki Addons
1+
# Bedrock Examples
22

33
This 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

1111
Please 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+
2225
If 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+
```

0 commit comments

Comments
 (0)