- API -
propertyList = reaper.AZ_Wwise_GetPropertyList(itemID)
- API Detail-
▼Input value
・itemID (String): ID of the Wwise object
・language (String): Language (optional; default: selected language)
・platform (String): Platform (optional; default: selected platform)
▼Output value
・propertyList : Property List
- Volume : Object volume
- Pitch : Pitch
- Lowpass: Lowpass cutoff frequency
- Highpass : Highpass cutoff frequency
- MakeUpGain : Gain
- OutputBusVolume: Volume to the output bus
- OutputBusLowpass: Lowpass cutoff frequency for the output sound
- OutputBusHighpass: Highpass cutoff frequency for the output sound
-InitialDelay: Delay
-IsStreamingEnabled: Streaming
-IsNonCachable: Non-cacheable
-IsZeroLatency: Zero Latency
-PreFetchLength : Prefetch Length (milliseconds)
-VolumeOffset : Make-Up Gain
-BusVolume: Bus Volume
-OutputBusID : Output Bus ID
-OutputBusName : Output Bus Name
- 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.0
onwards
Gets a list of properties set on a specified Wwise object



