-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMPEG_audio_spatial.reverb.schema.json
38 lines (38 loc) · 1.5 KB
/
MPEG_audio_spatial.reverb.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "MPEG_audio_spatial.reverb",
"type": "object",
"description": "",
"allOf": [ { "$ref": "glTFProperty.schema.json"} ],
"properties": {
"id": {
"description": "A unique identifier",
"gltf_detailedDescription": "A unique identifier of the audio reverb unit in the scene.",
"id": "integer"
},
"bypass": {
"description": "Indicates if the reverb unit can be bypassed if the audio renderer does not support it.",
"gltf_detailedDescription": "Indicates if the reverb unit can be bypassed if the audio renderer does not support it.",
"type": "boolean",
"default": true
},
"properties": {
"description": "An array of property items",
"gltf_detailedDescription": "Array of items that contains reverb property objects describing reverb unit specific parameters",
"type": "array",
"items": {
"$ref": "MPEG_audio_spatial.reverb.property.schema.json"
},
"minItems": 1
},
"predelay": {
"description": "Delay of audio source.",
"gltf_detailedDescription": "Delay in seconds from onset of source to onset of late reverberation for which DSR is provided.",
"type": "number",
"default": 0
},
"extensions": {},
"extras": {}
},
"required": ["id", "properties"]
}