Corrected name of "textures_list.json" (#273)

This commit is contained in:
QuazChick
2024-04-03 19:07:53 +01:00
committed by GitHub
parent 3263cc0621
commit d6f46144c0
4 changed files with 15 additions and 10 deletions

View File

@@ -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" },

View File

@@ -1,7 +0,0 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Texture List",
"description": "A list of texture to load in.",
"type": "array",
"items": { "title": "Filepath", "type": "string", "pattern": "^textures/", "examples": ["textures/blocks/"] }
}

View File

@@ -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/"]
}
}

View File

@@ -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}"],