Add aseprite flipbook schema (#197)
* Add aseprite flipbook schema * Probably hash is unneeded * Add new UI texture definition file to compress_specification.json
This commit is contained in:
16
source/resource/textures/ui_texture_definition.json
Normal file
16
source/resource/textures/ui_texture_definition.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.resource.texture.ui_definition",
|
||||
"additionalProperties": false,
|
||||
"description": "The file that specifies either 9slice texture or Aseprite flipbook.",
|
||||
"title": "UI Texture File",
|
||||
"type": "object",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "./nine_slice.json"
|
||||
},
|
||||
{
|
||||
"$ref": "./aseprite_flipbook.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user