Advanced Search
Search Results
70 total results found
Houdini
OnCreated scripts
OnCreated Script to set name, color, shape of node: cachename = hou.ui.readInput("Enter cache name")node = kwargs["node"]node.setName(cachename[1])node.setUserData('nodeshape', "tilted")node.setColor(hou.Color(1,0,0))
Houdini FX
FFMPEG Commands
PythonModule Scripts
Get houdini version: hver = hou.applicationVersionString().rpartition('.')[0]
Python
All the python stuff thats standalone.
Nuke
Linux & CLI Commands
Python
Raw to JPG
ufraw-batch --out-type jpeg *
VEX
Images and PDFs
DistroBox
NixOS
Admin
Nuke Commands, Python, TCL
Top Node AutoWrite
if you need your output file named exactly like your input file then use a little TCL expression in the file knob of the write node suggestion your filename convention is like: //path/to/file/filename.pattern.ext then: [lindex [split [lindex [split [knob [t...
POPs
Random Spin: // The following makes it random: axis = rand(@id) - set(0.5, 0.5, 0.5); spinspeed *= rand(@id+0.1);
TCL Commands
GETTING A KNOB’S VALUE OF A SPECIFIC NODE: #First frame of current read/write: [value Read1.first] #Getting a knob’s value of current node: [value this.first_frame] #Return label value of the input node: [value this.size] #Name of the input node...
Move Files
import os,hou, shutil selected = hou.selectedNodes() for x in selected: if x.parm("env_map"): file = x.parm("env_map").eval() parm1 = x.parm("env_map") elif x.parm("fileName"): file = x.parm("fileName").eval() pa...