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
28 views
0 comments


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
15 views
0 comments


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
17 views
0 comments


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
123 views
0 comments


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
7 views
0 comments


Remember Me 01
Basic Texture Nodes for Arnold
DJ
Jul 17, 20191 min read
19 views
0 comments


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
8 views
0 comments


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
3 views
0 comments


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
4 views
0 comments


DJ
Jul 9, 20190 min read
43 views
0 comments


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
5 views
0 comments


DJ
Jul 8, 20190 min read
37 views
0 comments


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
27 views
0 comments


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
94 views
0 comments


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
71 views
0 comments


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
43 views
0 comments


DJ
Jan 12, 20180 min read
27 views
0 comments


Production
Shadow Path HDR Image by 360 Camera
DJ
Jan 10, 20181 min read
37 views
0 comments


DJ
Oct 31, 20170 min read
19 views
0 comments


DJ
Oct 20, 20170 min read
37 views
0 comments
bottom of page