top of page
- API -

reaper.AZ_Wwise_AddObjectToSoundBank(soundbankID, objectID, filter)

- API Detail-

▼Input values

  • soundbankID(string): ID (or name or path) of the SoundBank to add the object to

  • objectID(string): ID (or name or path) of the object to add

  • filter(array): Filter selection (optional, default: {0, 1, 2})

▼Output values


The values to set for filter areAZ_Wwise_Filtercorresponds to

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())              

require("reaper_AZSTOKE_GOLD")              

              

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

              

    soundbankPath = "\\SoundBanks\\Default Work Unit\\test_SoundBank"              

                  

    objectPath = "\\Events\\Default Work Unit\\test_Event"              

                   

    reaper.AZ_Wwise_AddObjectToSoundBank(soundbankPath,objectPath,{0,1,2})              

                  

    Msg(reaper.AZ_GetErrorMsg())              

                  

    reaper.AZ_Wwise_Disconnect()              

end  


Wwise

AZ_Wwise_AddObjectToSoundBank

Supported versions:

1.3.0

onwards

Add an object to a SoundBank

bottom of page