top of page
- API -
stateGroup, stateList = reaper.AZ_Wwise_GetStateSet(stateGroupName, ignoreNone)
- API Detail-
▼Input values
stateGroupName(string): state group name
ignoreNone(boolean): whether to include None (optional, default: FALSE)
▼Output values
stateGroup(WwiseObject) : ID, Name, Path
stateList(WwiseObjectArray) : ID, Name, Path
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
if reaper.AZ_Wwise_Connect("127.0.0.1", 8080) then
stateGroup, stateList = reaper.AZ_Wwise_GetStateSet("Mode")
ShowObject(stateGroup)
ShowObject(stateList)
Msg(reaper.AZ_GetErrorMsg())
reaper.AZ_Wwise_Disconnect()
end
Wwise
AZ_Wwise_GetStateSet
Supported versions:
1.1.0
onwards
Get state information

bottom of page


