Updated Schemas

This commit is contained in:
Ben C 2024-04-01 04:06:59 +00:00
parent 4a06a5891d
commit c5a0752228

View File

@ -5029,7 +5029,7 @@
"description": "An optional rename of this object" "description": "An optional rename of this object"
}, },
"creditsType": { "creditsType": {
"default": "fast", "default": "none",
"$ref": "#/definitions/NHCreditsType" "$ref": "#/definitions/NHCreditsType"
}, },
"gameOverText": { "gameOverText": {
@ -5037,9 +5037,16 @@
"description": "Text displayed in orange on game over. For localization, put translations under UI." "description": "Text displayed in orange on game over. For localization, put translations under UI."
}, },
"deathType": { "deathType": {
"description": "The type of death the player will have if they enter this volume.", "description": "The type of death the player will have if they enter this volume. Don't set to have the camera just fade out.",
"default": "default", "default": "default",
"$ref": "#/definitions/NHDeathType" "oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/NHDeathType"
}
]
} }
} }
}, },
@ -5049,12 +5056,14 @@
"x-enumNames": [ "x-enumNames": [
"Fast", "Fast",
"Final", "Final",
"Kazoo" "Kazoo",
"None"
], ],
"enum": [ "enum": [
"fast", "fast",
"final", "final",
"kazoo" "kazoo",
"none"
] ]
}, },
"CometTailModule": { "CometTailModule": {