Updated Schemas

This commit is contained in:
Ben C 2022-11-25 22:46:28 +00:00
parent f7066781eb
commit dcf119fe48

View File

@ -2609,6 +2609,10 @@
"type": "string",
"description": "The audio to use. Can be a path to a .wav/.ogg/.mp3 file, or taken from the AudioClip list."
},
"clipSelection": {
"default": "random",
"$ref": "#/definitions/ClipSelectionType"
},
"track": {
"description": "The audio track of this audio volume",
"default": "environment",
@ -2647,6 +2651,20 @@
}
}
},
"ClipSelectionType": {
"type": "string",
"description": "",
"x-enumNames": [
"RANDOM",
"SEQUENTIAL",
"MANUAL"
],
"enum": [
"random",
"sequential",
"manual"
]
},
"AudioMixerTrackName": {
"type": "string",
"description": "",