top of page
- API -

containerList = reaper.AZ_Wwise_CreateContainer(parentItemID, containerType, objName)

- API Detail-

▼Input value

parentObjID(String): The ID of the parent object.

containerType(Integer): The type of container to create.

- 0: Random container

- 1: Sequence container

- 2: Switch container

- 3: Blend Container

name(String): The name of the container.


▼Output value

container(table) : Information of the created container

- ID(String): ID

- Name(String) : Name

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_GOLD")


if (reaper.AZ_Wwise_Connect("127.0.0.1",8080)) then

objectList,numObjects = reaper.AZ_Wwise_GetSelectedObjectList()

container = reaper.AZ_Wwise_CreateContainer(objectList[1].ID,0,"AZ_Container_Add")

Msg(container.ID)

Msg(container.Name)

reaper.AZ_Wwise_Disconnect()

end

Wwise

AZ_Wwise_CreateContainer

Supported versions:

1.0.3

onwards

Create a container directly under the specified Wwise object

bottom of page