top of page
- API -

reaper.AZ_Wwise_SetReference(itemID, propertyName, refItemID)

- API Detail-

▼Input value

・ItemID (string): Object ID (or path)

・propertyName (string): Property name

・referenceItemID (string): ID (or path) of the object to be set

・platform (string): Platform (optional; default: selected platform)

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())    

require("reaper_AZSTOKE_GOLD")    

    

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


    itemPath = "\\Actor-Mixer Hierarchy\\Default Work Unit\\AZ Sound"

    

    busPath = "\\Master-Mixer Hierarchy\\Default Work Unit\\Bus_01"

    

    reaper.AZ_Wwise_SetReference(itemPath, "OutputBus", busPath)

    

    Msg(reaper.AZ_GetErrorCode())

    

    reaper.AZ_Wwise_Disconnect()

end

Wwise

AZ_Wwise_SetReference

Supported versions:

1,2,0

onwards

Set object to property of Reference type

bottom of page