top of page
- API -

auxList, numSends = reaper.AZ_Wwise_GetUserAuxSend(itemID)

- API Detail-

▼Input value

・itemID(string) : ID of the Wwise object


▼Output value

・auxList(table): Array of aux information

ID: Bus ID

Name: Name of the bus

UserAuxSendVolume: Send amount

numSends(integer): Number of sends

- 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()


    auxList, numSends = reaper.AZ_Wwise_GetUserAuxSend(itemList[1]["ID"])


    for k, obj in pairs(auxList ) do

        for k, v in pairs(obj ) do

            Msg(k .. " : " .. tostring(v))

        end

    end

    

    Msg("")


    Msg("numSends : " .. tostring(numSends))


    reaper.AZ_Wwise_Disconnect()

end

Wwise

AZ_Wwise_GetUserAuxSend

Supported versions:

1.0.0

onwards

Get the sends set for the specified Wwise object

bottom of page