top of page
- API -

options = reaper.AZ_GetRenderSettingFromProject(projectFilePath)

- API Detail -

▼入力値

projectFilePath(string) : プロジェクトファイルパス

▼出力値

options(RenderOptions) : レンダリング設定

- 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



options = reaper.AZ_GetRenderSettingFromProject("D:\\script\\script.rpp")


showObject(options)

Render

AZ_GetRenderSettingFromProject

対応バージョン:

1.0.3

以降

レンダリング設定をプロジェクトファイルから取得

bottom of page