top of page
- API -

wwiseStateModification = reaper.AZ_Wwise_GetStateModification(itemID, targetStateGroup, targetPropertyList)

- API Detail -

▼入力値

itemID(string) : IDorパス

targetStateGroup(StringArray) : 対象ステートグループ名リスト(任意 デフォルト : 空)

targetPropertyList(StringArray) : 対象プロパティリスト(任意 デフォルト : 空)

▼出力値

wwiseStateModification(WwiseStateModificationArray) : ID

Name

State(配列)

ID

Name

CustomStateName

CustomStateID

ShortID

プロパティ…

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())


require("reaper_AZSTOKE_GOLD")

function showObject(object, depth)


    local obj = object

    if depth == nil then depth = 0 end


    if(type(obj) == "table") then

        Msg("")

        for k, v in pairs(obj) do

            for i = 1, depth, 1 do reaper.ShowConsoleMsg(" ") end 

            reaper.ShowConsoleMsg(tostring(k) .. " : ")


            showObject(v, depth + 4)

        end

    else

        Msg(obj)

    end

end



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


    selectedobjList = reaper.AZ_Wwise_GetSelectedObjectList()


    modificationList = reaper.AZ_Wwise_GetStateModification(selectedobjList[1]["ID"])

     

    showObject(modificationList)

          

    Msg(reaper.AZ_GetErrorMsg())


    reaper.AZ_Wwise_Disconnect()


end

Wwise

AZ_Wwise_GetStateModification

対応バージョン:

1.0.3

以降

ステートごとの変更値を取得する

bottom of page