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_SetName(itemID, name)
- API -
対応バージョン:
1.0.0
以降
Wwise
reaper.AZ_Wwise_SetName
Wwiseオブジェクトの名称を設定
Python
- API Detail -
▼入力値
・itemID : WwiseオブジェクトのIDまたはパス
・propertyName: 設定名
・value: 設定値
bottom of page