top of page
- API -
workunit = reaper.AZ_Wwise_CreateWorkUnit(parentItemID, name)
- API Detail -
▼入力値
・parentItemID(string) : 親オブジェクトID(orパス)(任意 デフォルト : Actor-Mixer-Hierarchy直下)
・name(string) : 名前(任意 デフォルト : New Work Unit)
・isUnique(boolean): 同名オブジェクトがある場合に新たに作成するかどうか
▼出力値
・WwiseObject(WwiseObject) : ID, Name, Path
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
if reaper.AZ_Wwise_Connect("127.0.0.1", 8080) then
parentPath = "\\Actor-Mixer Hierarchy\\Default Work Unit\\test"
workunit = reaper.AZ_Wwise_CreateWorkUnit(parentPath, "AZ Workunit")
Msg(reaper.AZ_GetErrorCode())
ShowObject(workunit)
reaper.AZ_Wwise_Disconnect()
end
Wwise
AZ_Wwise_CreateWorkUnit
対応バージョン:
1,2,0
以降
ワークユニットを作成

bottom of page