目次
Wwise SDK 2018.1.11
|
ak.wwise.ui.commands.unregister
Unregister an array of add-on UI commands.
Supported by
Graphical User Interface.
Arguments
Name | Type | Description |
---|---|---|
commands * | array |
(Required *)
Arguments Details
commands
type : array
argsSchema / commands / ...
items
id : string
Examples :
Unregister commands
Unregisters everything from the ak.wwise.ui.commands.register examples
Arguments:
{
"commands": [
"sample.programlessregistration",
"ak.edit_in_vscode",
"ak.open_in_wavosaur"
]
}
Result:
{}
Detailed JSON Schema
Arguments :
{
"type": "object",
"properties": {
"commands": {
"type": "array",
"items": {
"id": "string"
}
}
},
"required": [
"commands"
],
"additionalProperties": false
}
Options :
{
"type": "object",
"properties": {},
"additionalProperties": false
}
Response :
{
"type": "object",
"properties": {},
"additionalProperties": false
}
Document version : 1