top of page
- API -

propertyList = reaper.AZ_Wwise_GetPropertyList(itemID)

- API Detail -

▼入力値

・itemID : WwiseオブジェクトのID


▼出力値

・propertyList : プロパティ一覧

  -Volume : オブジェクトの音量

  -Pitch : ピッチ

  -Lowpass: ローパスのカットオフ周波数

  -Highpass : ハイパスのカットオフ周波数

  -MakeUpGain : ゲイン

  -OutputBusVolume: 出力バスへの音量

  -OutputBusLowpass : 出力音に対するローパスのカットオフ周波数

  -OutputBusHighpass : 出力音に対するハイパスのカットオフ周波数

  -InitialDelay: ディレイ

  -IsStreamingEnabled : ストリーム

  -IsNonCachable : キャッシュ不可

  -IsZeroLatency: ゼロレイテンシー

  -PreFetchLength : プリフェッチの長さ(ミリ秒)

  -VolumeOffset : Make-Up Gain

  -BusVolume: バスの音量

  -OutputBusID : 出力バスのID

  -OutputBusName : 出力バスの名前

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_GOLD")


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

    itemList = reaper.AZ_Wwise_GetSelectedObjectList()


    propertyList= reaper.AZ_Wwise_GetPropertyList(itemList [1]["ID"])


    for k, v in pairs(propertyList) do

        Msg(k .. " : " .. tostring(v))

    end


    reaper.AZ_Wwise_Disconnect()

end

Wwise

AZ_Wwise_GetPropertyList

対応バージョン:

1.0.3

以降

指定Wwiseオブジェクトに設定されたプロパティの一覧を取得

bottom of page