mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-21 23:37:47 +01:00
Add shape meta manipulations and rework attribute hook.
This commit is contained in:
parent
0adec35848
commit
6ad0b4299a
23 changed files with 900 additions and 298 deletions
23
schemas/structs/meta_shp.json
Normal file
23
schemas/structs/meta_shp.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Entry": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"Slot": {
|
||||
"$ref": "meta_enums.json#HumanSlot"
|
||||
},
|
||||
"Id": {
|
||||
"$ref": "meta_enums.json#U16"
|
||||
},
|
||||
"Shape": {
|
||||
"type": "string",
|
||||
"minLength": 8,
|
||||
"maxLength": 30
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Shape"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue