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

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