top of page

Search


Help Commend & delete
help(nuke.delete) e.g. nuke.delete(nuke.toNode("Blur1")) help(nuke.toNode) # Result: Help on built-in function toNode in module _nuke:...
DJ
Aug 7, 20191 min read


Default Setting
nuke.knobDefault('Transform.filter','Lanczos6') e.g. Defauilt setting is "cubic" but in convenient, can set the default value to Lanczos6
DJ
Jul 25, 20191 min read


Connect Expression to Multi-Nodes
nuke.toNode('Transform1').knob('scale').getValue() # bring value from 'Transform1' ns = nuke.selectedNodes() # name the selected Node as...
DJ
Jul 23, 20191 min read


getValue & setValue
Get Value: nuke.selectedNode().knob('size').getValue() e.g. nuke.selectedNode().knob('size').getValue() # Result: 10.0 Set Value:...
DJ
Jul 23, 20191 min read


Codes for Basic Control 01
Delete: nuke.delete(nuke.selectedNode()) e.g. nuke.delete(nuke.toNode("Blur1")) Control Default: nuke.knobDefault("Grade.add","99") *Kill...
DJ
Jul 17, 20191 min read


Remember Me 01
Basic Texture Nodes for Arnold
DJ
Jul 17, 20191 min read


Create a New Location with RENDER
Use this in Write Node import os if not os.path.isdir(os.path.dirname(nuke.thisNode()['file'].evaluate())): os.makedirs(os.path.dirname(n...
DJ
Jul 12, 20191 min read


Make a Node by Codes
nuke.nodes.Blur() = bring "Blur" node nuke.nodes.Blur(name='MyBlur') = Rename Blur as Myblur MyBlur=nuke.nodes.Blur(name='MyBlur') =...
DJ
Jul 10, 20191 min read


Common Command
import nuke node = nuke.selectedNode() Show a Sellected Node print(node['name'].value()) eg. nuke.nodes.Transform() knobDefault:...
DJ
Jul 10, 20191 min read


DJ
Jul 9, 20190 min read


Random Expression
Simple Test: value*random() EX: X axis = random() Y axis = 10*random() [(random(seed,frame*frequency)*amplitude)+valueoffset]...
DJ
Jul 9, 20191 min read


DJ
Jul 8, 20190 min read


Warm up Python for NUKE
LUT Setup on Viewer nuke.ViewerProcess.register("Cineon",nuke.createNode, ("ViewerProcess_1DLUT","current Cineon")) Register Cineon...
DJ
Jul 8, 20191 min read


Introduction
Fun to Cook “World’s Best Food” is an experimental film that explores extraterrestrial cuisine. It investigates qualities of Otherness in...
Dongjun Kim
Jun 2, 20181 min read


Project Description
I brought the idea from TV cooking shows. I simply imagined what if extraterrestrials exist somewhere and have been civilized, they might...
DJ
Jun 1, 20182 min read


Background Section
This is a TV show. It seems like a common, ubiquitous cooking show. However, this television show is made by extraterrestrials. What I...
DJ
May 3, 20182 min read


DJ
Jan 12, 20180 min read


Production
Shadow Path HDR Image by 360 Camera
DJ
Jan 10, 20181 min read


DJ
Oct 31, 20170 min read


DJ
Oct 20, 20170 min read
bottom of page