Executes an action on the given transport object, or all transports if no transport is specified.
Graphical User Interface.
Name | Type | Description |
---|---|---|
transport | integer | Transport object ID to be used with all other ak.wwise.core.transport functions. |
action * | string | The action to execute. Possible values : "play", "stop", "pause", "playStop" |
(Required *)
description : Transport object ID to be used with all other ak.wwise.core.transport functions.
type : integer
minimum : 0
maximum : 4294967295
type : string
Possible values : "play", "stop", "pause", "playStop"
description : The action to execute.
Plays the given transport object.
{ "action": "play", "transport": 1234 }
{}
Stops all transport objects.
{ "action": "stop" }
{}
Toggles playback (pause / resume) on the given transport object.
{ "action": "pause", "transport": 1234 }
{}
Toggles playback (play / stop) on the given transport object.
{ "action": "playStop", "transport": 1234 }
{}
{ "type": "object", "properties": { "transport": { "description": "Transport object ID to be used with all other ak.wwise.core.transport functions.", "type": "integer", "minimum": 0, "maximum": 4294967295 }, "action": { "type": "string", "enum": [ "play", "stop", "pause", "playStop" ], "description": "The action to execute." } }, "required": [ "action" ], "additionalProperties": false }
{ "type": "object", "required": [], "properties": {}, "additionalProperties": false }
{ "type": "object", "properties": {}, "additionalProperties": false }
Document version : 1