mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-04-28 09:04:12 +00:00
Add schema for texture_sizes.json [ci skip]
This commit is contained in:
parent
38ea01d605
commit
8fd0a814e9
33
misc/json-schemas/texture_sizes.json
Normal file
33
misc/json-schemas/texture_sizes.json
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
||||
"title": "JSON schema for texture sizes",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sizes": {
|
||||
"description": "List of textures and their sizes to prevent accidental scaling being applied",
|
||||
"type": "object",
|
||||
"patternProperties": {
|
||||
"^.*$": {
|
||||
"description": "Location and Width/Height of texture",
|
||||
"type": "array",
|
||||
"minItems": 2,
|
||||
"maxItems": 2,
|
||||
"items": [
|
||||
{
|
||||
"type": "number",
|
||||
"minimum": 0,
|
||||
"maximum": 65535
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"minimum": 0,
|
||||
"maximum": 65535
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
Loading…
Reference in a new issue