Skip to content

Commit cfe93e7

Browse files
committed
- Added behaviorpack.block.components.texture_not_found
1 parent dd67415 commit cfe93e7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Block - Components - Texture not found
2+
3+
The block texture shortname you have specificed could not be found in the `terrain_texture.json` file.
4+
5+
For example;
6+
7+
```json
8+
{
9+
"minecraft:material_instances": {
10+
"*": {
11+
"render_method": "opaque",
12+
"texture": "diamond_block"
13+
}
14+
}
15+
}
16+
```
17+
18+
```json
19+
{
20+
"resource_pack_name": "rp",
21+
"texture_name": "atlas.terrain",
22+
"padding": 8,
23+
"num_mip_levels": 4,
24+
"texture_data": {
25+
"diamond_block": {
26+
"textures": "textures/blocks/diamond_block"
27+
}
28+
}
29+
}
30+
```
31+
32+
Ensure the other properties such as `padding`, `num_mip_levels` are also found in the `terrain_texture.json`

0 commit comments

Comments
 (0)