@璐村惂鐢ㄦ埛_000076K馃惥 off
rem --------------------------------------
rem -------- KATANA Specific ------------
rem --------------------------------------
rem --Define the install location for KATANA and add binaries to the PATH--
set "KATANA_ROOT=F:\Program Files\Foundry\Katana3.5v2"
set "PATH=%PATH%;%KATANA_ROOT%\bin"
rem --Make the example projects like the PyMock asset plugins available in KATANA
set "KATANA_RESOURCES=%KATANA_RESOURCES%;%KATANA_ROOT%\plugins\Resources\Examples"
rem --This line is a simple example of how custom shelf scripts can be sourced--
rem
http://help.thefoundry.co.uk/katana/current/#tg/shelf_item_scripts/shelf_item_scripts.htmlset "KATANA_RESOURCES=%KATANA_RESOURCES%;C:\Users\xxxxxx\scripts\katana_shelves"
set "KATANA_RESOURCES=%KATANA_RESOURCES%;C:\Users\xxxxxx\scripts\katana_tools"
rem -This is how you set the default renderer even when more than one are used at once (arnold, prman, vray, dl)
rem - Change this to match the renderer you want to use by default.
set "DEFAULT_RENDERER=arnold"
rem ----------------------------------------
rem -------- 3Delight Specific ------------
rem ----------------------------------------
rem --This is the location of where the main 3Delight package is installed--
set "DELIGHT=C:\Program Files\3Delight"
rem --This is the location of the 3Delight for KATANA plugin--
set "DLFK_INSTALL_PATH=F:\Program Files\3Delight"
rem --These make sure that all the shaders, and tools can be found by the plugin/renderer--
set "DL_DISPLAYS_PATH=F:\Program Files\3Delight\displays"
set "DL_SHADERS_PATH=F:\Program Files\3Delight\shaders"
set "PATH=%PATH%;F:\Program Files\3Delight\bin"
rem --This is the location of the 3Delight for KATANA plug-in--
set "KATANA_RESOURCES=%KATANA_RESOURCES%;%DLFK_INSTALL_PATH%"
rem !!--------------------------------!!
rem --------------------------------------
rem -------- Arnold Specific ------------
rem --------------------------------------
rem --Where you have installed the KtoA plug-in--
set "ARNOLD_INSTALL_PATH=F:\Program Files\ktoa\ktoa-3.0.2.0-kat3.5-windows"
rem --Without these three KtoA will not function--
set "ARNOLD_PLUGIN_PATH=%ARNOLD_INSTALL_PATH%\Plugins"
set "ARNOLD_VERSION=6.0.2.0"
set "PATH=%PATH%;%ARNOLD_INSTALL_PATH%\bin"
rem --To install the AlShaders
rem --
http://www.anderslanglands.com/alshaders/index.html--rem --Copy the Args folder itself to the bin folder of AlShaders folder--
rem --Set this line below to include the AlShaders into the Arnold shader path
set "ALSHADER_PATH=F:\Program Files\ktoa\ktoa-3.0.2.0-kat3.5-windows\bin"
set "ARNOLD_PLUGIN_PATH=%ARNOLD_PLUGIN_PATH%;%ALSHADER_PATH%"
rem --This is how to load the KtoA plug-in--
set "KATANA_RESOURCES=%KATANA_RESOURCES%;%ARNOLD_INSTALL_PATH%"
rem !!--------------------------------!!
rem -------- Start KATANA ------------
"%KATANA_ROOT%\bin\katanaBin.exe"
rem This holds the cmd prompt open so you can inspect it if there are issues
pause