From dcf119fe48eae77cd8bed4b0ffc9705b182701f2 Mon Sep 17 00:00:00 2001 From: Ben C Date: Fri, 25 Nov 2022 22:46:28 +0000 Subject: [PATCH] Updated Schemas --- NewHorizons/Schemas/body_schema.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index 29b15f17..9bf422c1 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -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": "",