top of page
- API -
retval = reaper.AZ_Wwise_Connect(address, port, timeoutMs)
- API Detail-
▼Input values
address (string): destination address (use 127.0.0.1 to access Wwise on your own PC)
port(integer): destination port (use 8080 to access Wwise on your own PC)
timeoutMs (integer): connection attempt timeout (milliseconds) (optional, default 5 seconds)
▼Output values
・retval (boolean): connection success/failure
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
if (reaper.AZ_Wwise_Connect("127.0.0.1",8080)) then
projName = reaper.AZ_Wwise_GetProjectName()
Msg(projName)
reaper.AZ_Wwise_Disconnect()
end
Wwise
AZ_Wwise_Connect
Supported versions:
1.0.0
onwards
Connect to Wwise

bottom of page




