top of page
- API -

object = reaper.AZ_Wwise_CreateObject(parentItemID, name, type)

- API Detail-

▼Input values

・parentItemID(string): parent object ID (or path)

・name(string): name

・type(string): object type

・isUnique(boolean): whether to create a new object if one with the same name exists


▼Output values

・WwiseObject(WwiseObject) : ID, Name, Path

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())    

require("reaper_AZSTOKE_GOLD")    

    

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


    parentPath = "\\Master-Mixer Hierarchy\\Default Work Unit\\test"

    

    object = reaper.AZ_Wwise_CreateObject(parentPath, "AZ Object", "Bus")

    

    Msg(reaper.AZ_GetErrorCode())

    

    ShowObject(object)

    

    reaper.AZ_Wwise_Disconnect()

end


Wwise

AZ_Wwise_CreateObject

Supported versions:

1.2.0

onwards

Create other object

bottom of page