Updated Schemas

This commit is contained in:
Ben C 2024-06-13 20:20:45 +00:00
parent e776fb2564
commit fe3dd1176b

View File

@ -59,9 +59,9 @@
"type": "boolean",
"description": "Set to `true` if you want the player to stay in this star system if they die in it."
},
"travelAudio": {
"type": "string",
"description": "The audio that will play when travelling in space. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
"GlobalMusic": {
"description": "Replace music that plays globally",
"$ref": "#/definitions/GlobalMusicModule"
},
"Vessel": {
"description": "Configure warping to this system with the vessel",
@ -143,6 +143,40 @@
}
}
},
"GlobalMusicModule": {
"type": "object",
"additionalProperties": false,
"properties": {
"travelAudio": {
"type": "string",
"description": "The audio that will play when travelling in space. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
},
"endTimesAudio": {
"type": "string",
"description": "The audio that will play right before the loop ends. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
},
"endTimesDreamAudio": {
"type": "string",
"description": "The audio that will play right before the loop ends while inside the dreamworld. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
},
"brambleDimensionAudio": {
"type": "string",
"description": "The audio that will play when travelling through a bramble dimension. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
},
"finalEndTimesIntroAudio": {
"type": "string",
"description": "The audio that will play when you leave the ash twin project after taking out the advanced warp core. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
},
"finalEndTimesLoopAudio": {
"type": "string",
"description": "The audio that will loop after the final end times intro. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
},
"finalEndTimesBrambleDimensionAudio": {
"type": "string",
"description": "The audio that will loop after the final end times intro while inside a bramble dimension. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
}
}
},
"VesselModule": {
"type": "object",
"additionalProperties": false,