Skip to content

Commit

Permalink
Corrected name of "textures_list.json" (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuazChick committed Apr 3, 2024
1 parent 3263cc0 commit d6f4614
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion source/compress_specification.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{ "Source": "./resource/fog/fog.json", "Destination": "../resource/fog/fog.json" },
{ "Source": "./resource/textures/flipbook_textures.json", "Destination": "../resource/textures/flipbook_textures.json" },
{ "Source": "./resource/textures/item_texture.json", "Destination": "../resource/textures/item_texture.json" },
{ "Source": "./resource/textures/texture_list.json", "Destination": "../resource/textures/texture_list.json" },
{ "Source": "./resource/textures/textures_list.json", "Destination": "../resource/textures/textures_list.json" },
{ "Source": "./resource/textures/texture_set.json", "Destination": "../resource/textures/texture_set.json" },
{ "Source": "./resource/items/items.json", "Destination": "../resource/items/items.json" },
{ "Source": "./resource/models/entity/model_entity.json", "Destination": "../resource/models/entity/model_entity.json" },
Expand Down
7 changes: 0 additions & 7 deletions source/resource/textures/texture_list.json

This file was deleted.

12 changes: 12 additions & 0 deletions source/resource/textures/textures_list.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Textures List",
"description": "List texture files included in this pack to reduce loading times.",
"type": "array",
"items": {
"title": "Filepath",
"type": "string",
"pattern": "^textures/",
"examples": ["textures/blocks/"]
}
}
4 changes: 2 additions & 2 deletions vscode-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/item_texture.json"
},
{
"fileMatch": ["texture_list.{json,jsonc,json5}"],
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/texture_list.json"
"fileMatch": ["textures_list.{json,jsonc,json5}"],
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/textures_list.json"
},
{
"fileMatch": ["*.texture_set.{json,jsonc,json5}"],
Expand Down

0 comments on commit d6f4614

Please sign in to comment.