top of page
- API -

actorMixer = reaper.AZ_Wwise_CreateActorMixer(parentItemID, name)

- API Detail -

▼入力値

・parentItemID(string) : 親オブジェクトID(orパス)

・name(string) : 名前(任意 デフォルト : New Actor-Mixer)

・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"

    

    actorMixer = reaper.AZ_Wwise_CreateActorMixer(parentPath, "AZ ActorMixer")

    

    Msg(reaper.AZ_GetErrorCode())

    

    ShowObject(actorMixer)

    

    reaper.AZ_Wwise_Disconnect()

end


Wwise

AZ_Wwise_CreateActorMixer

対応バージョン:

1,2,0

以降

Actor-Mixerを作成

bottom of page