スキーマ
{
"type": "object",
"properties": {
"gameObject": {
"type": "integer",
"description": "関連するゲームオブジェクトID。 \\n ゲームオブジェクトID、符号なし整数64-bit。",
"minimum": 0,
"maximum": 18446744073709551615
},
"auxSendValues": {
"type": "array",
"maxItems": 4,
"items": {
"type": "object",
"properties": {
"listener": {
"type": "integer",
"description": "このセンドと関連するリスナーの、ゲームオブジェクトID。\\n ゲームオブジェクトID、符号なし整数64-bit。",
"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 符号なし整数32-bit。",
"minimum": 0,
"maximum": 4294967295
}
],
"description": "AuxバスのID (GUID)、または名前、またはShort ID。"
},
"controlValue": {
"type": "number",
"description": "範囲 [0.0f:1.0f] の値、レベルをAUXバスに送信します。"
}
},
"description": "AkAuxSendValueストラクチャ。",
"required": [
"listener",
"auxBus",
"controlValue"
],
"additionalProperties": false
},
"description": "AkAuxSendValueストラクチャのアレイ。"
}
},
"required": [
"gameObject",
"auxSendValues"
],
"additionalProperties": false
}