Corrected name of "textures_list.json" (#273)
This commit is contained in:
@@ -16,7 +16,7 @@
|
|||||||
{ "Source": "./resource/fog/fog.json", "Destination": "../resource/fog/fog.json" },
|
{ "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/flipbook_textures.json", "Destination": "../resource/textures/flipbook_textures.json" },
|
||||||
{ "Source": "./resource/textures/item_texture.json", "Destination": "../resource/textures/item_texture.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/textures/texture_set.json", "Destination": "../resource/textures/texture_set.json" },
|
||||||
{ "Source": "./resource/items/items.json", "Destination": "../resource/items/items.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" },
|
{ "Source": "./resource/models/entity/model_entity.json", "Destination": "../resource/models/entity/model_entity.json" },
|
||||||
|
|||||||
@@ -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/"] }
|
|
||||||
}
|
|
||||||
12
source/resource/textures/textures_list.json
Normal file
12
source/resource/textures/textures_list.json
Normal 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/"]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -91,8 +91,8 @@
|
|||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/item_texture.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/item_texture.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["texture_list.{json,jsonc,json5}"],
|
"fileMatch": ["textures_list.{json,jsonc,json5}"],
|
||||||
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/texture_list.json"
|
"url": "https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/resource/textures/textures_list.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fileMatch": ["*.texture_set.{json,jsonc,json5}"],
|
"fileMatch": ["*.texture_set.{json,jsonc,json5}"],
|
||||||
|
|||||||
Reference in New Issue
Block a user