top of page
  • DJ

Warm up Python for NUKE

LUT Setup on Viewer

nuke.ViewerProcess.register("Cineon",nuke.createNode, ("ViewerProcess_1DLUT","current Cineon"))


Register Cineon

nuke.ViewerProcess.register("Cineon",nuke.createNode, ("ViewerProcess_1DLUT","current Cineon"))


Register LUT file

nuke.ViewerProcess.register("test_lut", nuke.createNode, ("Vectorfield", "vfield_file F:/edu/nuke_sc/lut_test/Nuke_sRGB.cube colorspaceIn cineon"))


# Copyright (c) 2009 The Foundry Visionmongers Ltd. All Rights Reserved.

## init.py

## loaded by nuke before menu.py

nuke.pluginAddPath('./gizmos')

nuke.pluginAddPath('./python')

nuke.pluginAddPath('./icons')

nuke.pluginAddPath('./rvnuke')

nuke.pluginAddPath('./plugins')

nuke.pluginAddPath('./h_gizmos')

nuke.pluginAddPath('./h_icons')

nuke.pluginAddPath('./l_gizmos/Channel')

nuke.pluginAddPath('./l_gizmos/Draw')

nuke.pluginAddPath('./l_gizmos/Filter')

nuke.pluginAddPath('./l_gizmos/Image')

nuke.pluginAddPath('./l_gizmos/Keyer')

nuke.pluginAddPath('./l_gizmos/Merge')

nuke.pluginAddPath('./l_gizmos/Transform')

nuke.pluginAddPath('./pixelfudger')

nuke.pluginAddPath('./geometry')

nuke.ViewerProcess.register("test_lut", nuke.createNode, ("Vectorfield", "vfield_file F:/edu/nuke_sc/lut_test/Nuke_sRGB.cube colorspaceIn cineon"))


21 views0 comments
bottom of page