top of page
- API -
object = reaper.AZ_Wwise_CreateObject(parentItemID, name, type)
- API Detail -
▼入力値
・parentItemID(string) : 親オブジェクトのID(orパス)
・name(string) : 名前
・type(string) : オブジェクト種別
・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 = "\\Master-Mixer Hierarchy\\Default Work Unit\\test"
object = reaper.AZ_Wwise_CreateObject(parentPath, "AZ Object", "Bus")
Msg(reaper.AZ_GetErrorCode())
ShowObject(object)
reaper.AZ_Wwise_Disconnect()
end
Wwise
AZ_Wwise_CreateObject
対応バージョン:
1,2,0
以降
その他オブジェクトを作成

bottom of page