top of page
- API -

objList = reaper.AZ_Wwise_GetTotalVolume(itemID, language, options)

- API Detail-

▼Input value

- itemID: Wwise object ID or path

・language: Language

・options: Processing options (optional)

ExcludeBusList: List of bus names to exclude (string array)

ExcludeActorList: A list of actor-mixer names to exclude (string array)

・AddBusList: Object list of buses to add

Name: Name of the bus to be added

Volume: Volume

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_GOLD")


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

    itemList = reaper.AZ_Wwise_GetSelectedObjectList()


    options = {

        ExcludeBusList = {

           "Aux_02"

        },

        ExcludeActorList = {

            "ACTOR_02"

       },

       AddBusList = {

          Name = "Aux_01", 

          Volume = -3.5

      }


    }


    totalVolume = reaper.AZ_Wwise_GetTotalVolume(itemList[1]["ID"], "Japanese", options)

    

    Msg(totalVolume)


    reaper.AZ_Wwise_Disconnect()

end


Wwise

AZ_Wwise_GetTotalVolume

Supported versions:

1.0.3

onwards

Calculates the sum of the volume settings up to the output of the specified Wwise object

bottom of page