Archives

Tiny Python Scripts

Here is an ever expanding collection of small yet useful Python scripts for Nuke: Show all Plugin Paths 1 nuke.pluginPath()nuke.pluginPath() Random Card X Pos 1 2 3 4 5 6 7 import nuke import random for i in nuke.selectedNodes('Card2'): p = i['translate'].getValue() p = p[2] t = [random.randint(1,101),0,p] i['translate'].setValue(t)import nuke import random for i in […]