1. 程式人生 > >nuke根據不同版本載入外掛

nuke根據不同版本載入外掛

在init.py裡面寫入以下內容;

if nuke.NUKE_VERSION_STRING.startswith("10")
    nuke.pluginAddpath("XXXX")
if nuke.NUKE_VERSION_STRING.startswith("11")
    nuke.pluginAddpath("XXXX")

根據不同版本指定不同的讀取路徑