top of page
- API -
reaper.AZ_Wwise_Connect(address, port, timeoutMs)
- API Detail-
▼Input value
address (string): Address to connect to (127.0.0.1 if you are accessing Wwise on your own PC)
port(integer) : The port to connect to (8080 if you are accessing Wwise on your own PC)
timeoutMs (integer): The time (in milliseconds) to attempt to connect (optional, default 5 seconds)
▼Output value
・retval (boolean): Connection success or failure
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
if (reaper.AZ_Wwise_Connect("127.0.0.1",8080,5)) then
projName = reaper.AZ_Wwise_GetProjectName()
Msg(projName)
AZ_Wwise_Disconnect()
end
Wwise
AZ_Wwise_Connect
Supported versions:
1.0.3
onwards
Connect to Wwise
bottom of page