top of page
- API -

exists = reaper.AZ_Wwise_ExistsObject(itemPath)

- API Detail -

▼入力値

  • itemPath (string): Wwiseオブジェクトのパス


▼出力値 

  • exists (boolean): 存在するかどうか

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_GOLD")

  

if reaper.AZ_Wwise_Connect("127.0.0.1", 8080) then


  itemPath = "\\Actor-Mixer Hierarchy\\Default Work Unit\\test\\AZ ActorMixer"

  

  itemPath2 = "\\Actor-Mixer Hierarchy\\Default Work Unit\\test\\AZ ActorMixer2"

    

  exists = reaper.AZ_Wwise_ExistsObject(itemPath)

  

  Msg(exists)

  

  exists = reaper.AZ_Wwise_ExistsObject(itemPath2)

  

  Msg(exists)

  

  reaper.AZ_Wwise_Disconnect()

end

Wwise

AZ_Wwise_ExistsObject

対応バージョン:

1.2.0

以降

Wwiseオブジェクトがあるかどうか確認

bottom of page