top of page
os = reaper.GetOS()
if "Win" == string.match(os,"(Win)") then
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
else
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dylib"
end
require("reaper_AZSTOKE_GOLD")
function Msg(param)
reaper.ShowConsoleMsg(tostring((param)).."\n")
end
if (reaper.AZ_Wwise_Connect("127.0.0.1",8080,5))==0 then
retval,projName = reaper.AZ_Wwise_GetProjectName()
Msg(projName)
end
- SIMPLE SCRIPT -
retval = reaper.AZ_Wwise_Connect(address, port, timeoutMs)
- API -
対応バージョン:
1.0.0
以降
Wwise
reaper.AZ_Wwise_Connect
Wwiseをコネクト開始
Python
- API Detail -
▼入力値
・address : 接続先アドレス(自身のPC内のWwiseにアクセスする場合は127.0.0.1)
・port : 接続先ポート(自身のPC内のWwiseにアクセスする場合は8080)
・timeoutMs : 接続を試行する時間(任意、デフォルト5秒)
bottom of page