top of page
- API -
hasChild = AZ_Wwise_HasChild(childItemIDorName, isRecursive)
- API Detail -
▼入力値
itemID(string) : 対象オブジェクト
childItemIDorName(string) : 子オブジェクトのID、パスまたは名前
isRecursive(boolean) : 再帰的に検索するかどうか(任意 デフォルト : false)
▼出力値
hasChild(bool) : 指定の子オブジェクトを持つかどうか
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
reaper.AZ_Wwise_Connect("127.0.0.1", 8080)
parentPath = "\\Actor-Mixer Hierarchy\\Default Work Unit\\Container_1"
name = "Sound_1"
hasChild = reaper.AZ_Wwise_HasChild(parentPath, name, false)
Msg(hasChild)
reaper.AZ_Wwise_Disconnect()
Wwise
AZ_Wwise_HasChild
対応バージョン:
1.4.0
以降
指定のオブジェクトが指定の子オブジェクトを持つかどうか

bottom of page




