top of page
- API -

propertyList = reaper.AZ_Wwise_GetPropertyList(itemID)

- API Detail-

▼Input value

・itemID : Wwise object ID


▼Output value

・propertyList: List of properties

Volume : The volume of the object.

Pitch

Lowpass: Lowpass cutoff frequency

Highpass: Highpass cutoff frequency

MakeUpGain : Gain

OutputBusVolume: Volume to the output bus

OutputBusLowpass: Low pass cutoff frequency for output sound

OutputBusHighpass: High pass cutoff frequency for the output sound

InitialDelay:

IsStreamingEnabled :

IsNonCachable :

IsZeroLatency:

PreFetchLength :

VolumeOffset :

BusVolume:

OutputBusID: Output bus ID

OutputBusName : Name of the output bus

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


propertyList= reaper.AZ_Wwise_GetPropertyList(itemList [0]["ID"])


for k, v in pairs(propertyList) do

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

end


reaper.AZ_Disconnect()

end

Wwise

AZ_Wwise_GetPropertyList

Supported versions:

1.0.3

onwards

Gets a list of properties set on a specified Wwise object

bottom of page