스키마
{
"type": "object",
"properties": {
"gameObject": {
"type": "integer",
"description": "연관된 게임 오브젝트 ID.\\n 게임 오브젝트 ID, unsigned integer 64 비트.",
"minimum": 0,
"maximum": 18446744073709551615
},
"auxSendValues": {
"type": "array",
"maxItems": 4,
"items": {
"type": "object",
"properties": {
"listener": {
"type": "integer",
"description": "이 센드와 연관된 리스너의 게임 오브젝트 ID.\\n 게임 오브젝트 ID, unsigned integer 64 비트.",
"minimum": 0,
"maximum": 18446744073709551615
},
"auxBus": {
"anyOf": [
{
"type": "string",
"pattern": "^[a-zA-Z_]+[a-zA-Z_0-9()]*$",
"description": "오브젝트의 이름을 말합니다."
},
{
"type": "string",
"pattern": "^\\{[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}\\}$",
"description": "해당 형식의 오브젝트 GUID: {aabbcc00-1122-3344-5566-77889900aabb}."
},
{
"type": "integer",
"description": "Wwise Object의 Short ID.\\n Unsigned Integer 32 비트.",
"minimum": 0,
"maximum": 4294967295
}
],
"description": "보조 버스의 ID (GUID), 이름, 또는 Short ID."
},
"controlValue": {
"type": "number",
"description": "[0.0f:1.0f] 범위 내 값으로, 보조 버스로의 전송 레벨."
}
},
"description": "AkAuxSendValue 구조체.",
"required": [
"listener",
"auxBus",
"controlValue"
],
"additionalProperties": false
},
"description": "AkAuxSendValue 구조체의 배열."
}
},
"required": [
"gameObject",
"auxSendValues"
],
"additionalProperties": false
}