Created
April 20, 2018 15:33
-
-
Save kpprt/eeae1f48ae29f94b244d8fb47acc867f to your computer and use it in GitHub Desktop.
Simple Multiply node for Nuke extended with parameters to control a flicker noise.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set cut_paste_input [stack 0] | |
version 10.5 v3 | |
push $cut_paste_input | |
Multiply { | |
channels rgb | |
value {{"offset + (noise(frame * frequency1, seed) + noise(frame * frequency2, seed)) * 0.5 * amplitude"}} | |
name CS_Flicker1 | |
addUserKnob {20 Flicker} | |
addUserKnob {7 frequency1} | |
frequency1 0.123 | |
addUserKnob {7 frequency2} | |
frequency2 0.456 | |
addUserKnob {7 amplitude} | |
amplitude 0.5 | |
addUserKnob {7 offset} | |
offset 1 | |
addUserKnob {3 seed} | |
seed 1234 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment