-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaber.nk
3384 lines (3384 loc) · 59.6 KB
/
Saber.nk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#! C:/Program Files/Nuke13.1v1/nuke-13.1.1.dll -nx
version 13.1 v1
define_window_layout_xml {<?xml version="1.0" encoding="UTF-8"?>
<layout version="1.0">
<window x="0" y="0" w="2559" h="1364" screen="0">
<splitter orientation="1">
<split size="40"/>
<dock id="" hideTitles="1" activePageId="Toolbar.1">
<page id="Toolbar.1"/>
</dock>
<split size="1896" stretch="1"/>
<splitter orientation="2">
<split size="776"/>
<dock id="" activePageId="Viewer.1" focus="true">
<page id="Viewer.1"/>
<page id="Viewer.2"/>
<page id="Viewer.3"/>
<page id="Viewer.4"/>
<page id="Viewer.5"/>
</dock>
<split size="546"/>
<dock id="" activePageId="DAG.1">
<page id="DAG.1"/>
<page id="Curve Editor.1"/>
<page id="DopeSheet.1"/>
</dock>
</splitter>
<split size="615"/>
<dock id="" activePageId="Properties.1">
<page id="Properties.1"/>
<page id="uk.co.thefoundry.backgroundrenderview.1"/>
</dock>
</splitter>
</window>
</layout>
}
Root {
inputs 0
name C:/Users/Wouter/Documents/GitHub/VCSaberNuke/Saber.nk
frame 1011
first_frame 1001
last_frame 1100
lock_range true
format "1920 1080 0 0 1920 1080 1 HD_1080"
proxy_type scale
proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)"
colorManagement OCIO
OCIO_config aces_1.1
defaultViewerLUT "OCIO LUTs"
workingSpaceLUT scene_linear
monitorLut ACES/sRGB
monitorOutLUT "sRGB (ACES)"
int8Lut matte_paint
int16Lut texture_paint
logLut compositing_log
floatLut scene_linear
}
BackdropNode {
inputs 0
name BackdropNode2
tile_color 0x8e8e8eff
label "Displacement Test"
note_font_size 72
xpos -450
ypos -708
bdwidth 1146
bdheight 1716
z_order -1
}
BackdropNode {
inputs 0
name BackdropNode1
tile_color 0x476eaaff
label "Saber base"
note_font_size 42
xpos -60
ypos -276
bdwidth 285
bdheight 261
}
BackdropNode {
inputs 0
name BackdropNode3
tile_color 0x388e8e00
label "Base Distortion Node"
note_font_size 42
xpos 846
ypos -425
bdwidth 917
bdheight 498
}
BackdropNode {
inputs 0
name BackdropNode4
tile_color 0xc6774bff
label "Noise 1"
note_font_size 42
xpos -63
ypos 56
bdwidth 683
bdheight 400
}
BackdropNode {
inputs 0
name BackdropNode5
tile_color 0xff5b5bff
label "https://benmcewan.com/blog/2019/10/21/back-to-basics-common-errors-when-creating-a-gizmo/\n"
note_font_size 42
xpos 1138
ypos -695
bdwidth 1692
bdheight 80
}
BackdropNode {
inputs 0
name BackdropNode6
tile_color 0xaaaaaa00
label "Saber Node"
note_font_size 42
xpos 1916
ypos -414
bdwidth 1404
bdheight 494
}
Constant {
inputs 0
channels rgb
format "1920 1080 0 0 1920 1080 1 HD_1080"
name Constant1
xpos -50
ypos -566
}
Group {
name Line
help "TNT_Line by Michael Habenicht\nwww.tinitron.de\n\nDraw a line from Point 0 to Point 1"
label TNT_Line
xpos -50
ypos -452
addUserKnob {20 User}
addUserKnob {20 info l TNT_Line n 1}
info 0
addUserKnob {26 txt l "" +STARTLINE T "by Michael Habenicht\nwww.tinitron.de\n\nDraw a line from Point 0 to Point 1"}
addUserKnob {20 endGroup n -1}
addUserKnob {41 output T RotoPaint1.output}
addUserKnob {41 format T RotoPaint1.format}
addUserKnob {41 cliptype l "clip to" -STARTLINE T RotoPaint1.cliptype}
addUserKnob {41 replace -STARTLINE T RotoPaint1.replace}
addUserKnob {26 divider1 l "" +STARTLINE}
addUserKnob {12 p0 l "Point 0"}
p0 {{curve x1048 962 x1060 1207} {curve x1048 927 x1060 649}}
addUserKnob {12 p1 l "Point 1"}
p1 {446 268.5}
addUserKnob {26 divider2 l Attributes}
addUserKnob {19 RotoPaint1_color l color}
RotoPaint1_color 1
addUserKnob {6 RotoPaint1_color_panelDropped l "panel dropped state" -STARTLINE +HIDDEN}
addUserKnob {8 RotoPaint1_opacity l opacity}
RotoPaint1_opacity 1
addUserKnob {8 RotoPaint1_brush_size l "brush size" R 1 1000}
RotoPaint1_brush_size 4
addUserKnob {8 RotoPaint1_brush_spacing l "brush spacing"}
RotoPaint1_brush_spacing 0.05000000075
addUserKnob {8 RotoPaint1_brush_hardness l "brush hardness"}
RotoPaint1_brush_hardness 1
addUserKnob {8 RotoPaint1_writeon_start l "write on start"}
addUserKnob {8 RotoPaint1_writeon_end l "write on end"}
RotoPaint1_writeon_end 1
}
Input {
inputs 0
name Input1
xpos 132
ypos -122
}
RotoPaint {
curves {{{v x3f99999a}
{f 0}
{n
{layer Root
{f 2097664}
{t x44817000 x443d4000}
{a opc
{=parent.RotoPaint1_opacity
{{0 1}}}}
{cubiccurve Paint1 512 catmullrom
{cc
{f 2080}
{p
{{=parent.p0.x x44410000}
{=parent.p0.y x44040000}}
{{=parent.p1.x x44a4c666}
{=parent.p1.y x446ecccd}}}}
{t x44817000 x443d4000}
{a r
{=parent.RotoPaint1_color.r 1} g
{=parent.RotoPaint1_color.g 1} b
{=parent.RotoPaint1_color.b 1} a
{=parent.RotoPaint1_color.a 1} ro 0 go 0 bo 0 ao 0 opc
{=parent.RotoPaint1_opacity 1} bs
{=parent.RotoPaint1_brush_size x41200000} bsp
{=parent.RotoPaint1_brush_spacing x3d4ccccd} h
{=parent.RotoPaint1_brush_hardness x3e4ccccd} dt 0 spx x44800000 spy x44428000 sb 1 ws
{=parent.RotoPaint1_writeon_start 0} we
{=parent.RotoPaint1_writeon_end 1} tt x41600000}}}}}}
toolbox {createBezier {
{ selectAll str 1 ssx 1 ssy 1 sf 1 }
{ createBezier str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ createBezierCusped str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ createBSpline str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ createEllipse str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ createRectangle str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ createRectangleCusped str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ brush dt 0 bu 0 str 1 ssx 1 ssy 1 sf 1 sb 1 ltt 0 tt 14 }
{ eraser src 2 str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ clone src 1 str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ reveal src 3 str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ dodge src 1 str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ burn src 1 str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ blur src 1 str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ sharpen src 1 str 1 ssx 1 ssy 1 sf 1 sb 1 }
{ smear src 1 str 1 ssx 1 ssy 1 sf 1 sb 1 }
} }
toolbar_show_paint_selection true
toolbar_brush_hardness 0.200000003
toolbar_source_transform_scale {1 1}
toolbar_source_transform_center {320 240}
color {{parent.RotoPaint1_color.r 1} {parent.RotoPaint1_color.g} {parent.RotoPaint1_color.b} {parent.RotoPaint1_color.a}}
colorOverlay {0 0 0 0}
opacity {{parent.RotoPaint1_opacity 1}}
lifetime_type "all frames"
motionblur_on true
brush_size {{parent.RotoPaint1_brush_size 10}}
brush_spacing {{parent.RotoPaint1_brush_spacing 0.05000000075}}
brush_hardness {{parent.RotoPaint1_brush_hardness 0.200000003}}
dynamic_transparency false
buildup false
writeon_start {{parent.RotoPaint1_writeon_start 0}}
writeon_end {{parent.RotoPaint1_writeon_end 1}}
source_translate_round false
source_black_outside true
name RotoPaint1
selected true
xpos 132
ypos -88
}
Output {
name Output1
xpos 132
ypos 18
}
end_group
Premult {
name Premult3
xpos -50
ypos -361
}
Dot {
name Dot3
xpos -16
ypos -193
}
set N5e7ee800 [stack 0]
Glow_Exponential {
name Glow_Exponential1
xpos 136
ypos -196
size 150
intensity 13
range {0.45 1 1 1}
core_color 1
falloff_color 1
glow_only true
overscan 0
}
Dot {
name Dot4
xpos 170
ypos -111
}
push $N5e7ee800
Dot {
name Dot1
xpos -16
ypos -175
}
set N1dbb1c00 [stack 0]
Glow_Exponential {
name Glow_Exponential
xpos 26
ypos -178
size 20
intensity 4
range {0.25 1 1 1}
core_color 1
falloff_color 0.5
glow_only true
overscan 0
}
Dot {
name Dot2
xpos 60
ypos -145
}
push $N1dbb1c00
Merge2 {
inputs 2
operation plus
bbox B
name Merge1
xpos -50
ypos -148
}
Merge2 {
inputs 2
operation plus
bbox B
name Merge2
xpos -50
ypos -114
}
ColorCorrect {
master 0
midtones.gain {0 0.375 1 1}
highlights 0
lookup {shadow {curve 1 s0 x0 0 s0}
midtone {1-shadow-highlight}
highlight {curve x0.4099999964 0 s0 x1 1 s0}}
name ColorCorrect1
xpos -50
ypos -84
}
EXPTool {
mode Stops
red 1.55
green 1.55
blue 1.55
name Exposure1
xpos -50
ypos -48
}
set N1ddcc400 [stack 0]
Saturation {
saturation 0
name Saturation2
xpos -50
ypos 3
}
set N1dd57c00 [stack 0]
Dot {
name Dot20
xpos -126
ypos 6
}
Dot {
name Dot19
xpos -126
ypos 535
}
set N1dd57400 [stack 0]
Dot {
name Dot21
xpos -126
ypos 675
}
push $N1dd57400
push $N1dd57c00
Saturation {
saturation 0
name Saturation1
xpos -50
ypos 379
}
Blur {
size 25
filter box
name Blur1
xpos -50
ypos 403
}
Noise {
inputs 0
size 145
zoffset {{frame/25}}
octaves 3
gain 1.75
center {960 540}
name Noise1
xpos 302
ypos 100
}
Dot {
name Dot6
xpos 336
ypos 151
}
set N1dd56000 [stack 0]
Grade {
add 1
black_clamp false
white_clamp true
name Grade2
xpos 446
ypos 148
}
Invert {
name Invert3
xpos 446
ypos 281
}
Grade {
whitepoint 0.68
name Grade4
xpos 446
ypos 313
}
Dot {
name Dot9
xpos 480
ypos 386
}
push $N1dd56000
Clamp {
name Clamp1
xpos 60
ypos 142
}
Dot {
name Dot7
xpos 94
ypos 286
}
set N1dd54800 [stack 0]
Clamp {
minimum 1
maximum 0
name Clamp3
xpos 126
ypos 277
}
Invert {
name Invert2
xpos 214
ypos 277
}
push $N1dd56000
Clamp {
minimum 1
maximum 5
MinClampTo_enable true
MaxClampTo_enable true
name Clamp2
xpos 302
ypos 169
}
Grade {
blackpoint -2.7
add -1
black_clamp false
name Grade1
xpos 302
ypos 205
}
Invert {
name Invert1
xpos 302
ypos 229
}
Shuffle2 {
inputs 2
fromInput1 {{0} B A}
fromInput2 {{1} B A}
in2 rgba
mappings "4 rgba.red 0 0 rgba.red 0 0 rgba.green 0 1 rgba.green 0 1 rgba.blue 0 2 rgba.blue 0 2 rgba.red 1 0 rgba.alpha 0 3"
name Shuffle1
xpos 302
ypos 283
}
Grade {
whitepoint 0.9997
name Grade3
xpos 302
ypos 322
}
Premult {
name Premult1
xpos 302
ypos 359
}
push $N1dd54800
Merge2 {
inputs 2
name Merge4
xpos 60
ypos 359
}
Merge2 {
inputs 2
operation plus
name Merge5
xpos 60
ypos 383
}
Shuffle2 {
inputs 2
fromInput1 {{0} B A}
fromInput2 {{1} B A}
in2 rgba
mappings "4 rgba.red 0 0 rgba.red 0 0 rgba.green 0 1 rgba.green 0 1 rgba.blue 0 2 rgba.blue 0 2 rgba.red 1 0 rgba.alpha 0 3"
name Shuffle2
xpos 60
ypos 407
}
Premult {
name Premult2
xpos 60
ypos 431
}
Group {
name TurbulentDisplace1
help "by Daniel van der Kaaden\nversion 2.2"
tile_color 0x9f6fb3ff
xpos 60
ypos 487
addUserKnob {20 User}
addUserKnob {41 amount T IDistort1.uv_scale}
addUserKnob {41 size T Noise1.size}
addUserKnob {41 evolution T Noise1.zoffset}
addUserKnob {26 noiseControlsText l "" +STARTLINE}
addUserKnob {41 blur T Blur1.size}
addUserKnob {41 detail T Noise1.lacunarity}
addUserKnob {41 gain T Noise1.gain}
addUserKnob {41 gamma T Noise1.gamma}
addUserKnob {26 formatLine l "" +STARTLINE}
addUserKnob {41 format T Constant1.format}
addUserKnob {26 maskLine l "" +STARTLINE}
addUserKnob {26 maskName l "mask (alpha)" T ""}
addUserKnob {41 inject -STARTLINE T Multiply1.inject}
addUserKnob {41 invert_mask l invert -STARTLINE T Multiply1.invert_mask}
addUserKnob {41 fringe -STARTLINE T Multiply1.fringe}
}
Input {
inputs 0
name mask
xpos 123
ypos -302
number 1
}
Invert {
name Invert1
xpos 123
ypos -29
}
Dot {
name Dot5
xpos 157
ypos 134
}
Constant {
inputs 0
channels rgb
name Constant1
selected true
xpos -258
ypos -314
}
set N1dce4400 [stack 0]
Noise {
output {rgba.red -rgba.green -rgba.blue none}
size 80
zoffset {{frame/15}}
center {1600 900}
name Noise1
selected true
xpos -258
ypos -184
}
Grade {
channels {rgba.red -rgba.green -rgba.blue none}
add -0.2595
black_clamp false
name Grade1
selected true
xpos -258
ypos -143
}
Dot {
name Dot2
selected true
xpos -224
ypos -100
}
set N1dc8b400 [stack 0]
Shuffle {
red black
green red
name Shuffle1
selected true
xpos -148
ypos -104
}
Mirror2 {
flop true
name Mirror2_1
selected true
xpos -38
ypos -104
}
Dot {
name Dot3
selected true
xpos -4
ypos -22
}
push $N1dc8b400
Merge2 {
inputs 2
operation plus
name Merge1
selected true
xpos -258
ypos -26
}
Blur {
name Blur1
selected true
xpos -258
}
Multiply {
inputs 1+1
value 0
name Multiply1
xpos -258
ypos 125
disable {{"\[exists parent.input1.name]==0"}}
}
Dot {
name Dot1
selected true
xpos -224
ypos 237
}
Input {
inputs 0
name Input
xpos -447
ypos -304
}
Dot {
name Dot4
xpos -413
ypos -100
}
Copy {
inputs 2
from0 rgba.red
to0 forward.u
from1 rgba.green
to1 forward.v
name Copy2
selected true
xpos -447
ypos 220
}
IDistort {
uv forward
uv_scale 200
name IDistort1
selected true
xpos -447
ypos 288
}
Remove {
channels forward
name Remove1
xpos -447
ypos 386
}
Output {
name Output1
xpos -447
ypos 633
}
push $N1dce4400
Viewer {
frame 1011
frame_range 1001-1100
viewerProcess "sRGB (ACES)"
name Viewer1
selected true
xpos -447
ypos 324
}
end_group
Merge2 {
inputs 2
operation screen
bbox A
name Merge12
xpos 60
ypos 532
}
Group {
name TurbulentDisplace2
help "by Daniel van der Kaaden\nversion 2.2"
tile_color 0x9f6fb3ff
xpos 60
ypos 584
addUserKnob {20 User}
addUserKnob {41 amount T IDistort1.uv_scale}
addUserKnob {41 size T Noise1.size}
addUserKnob {41 evolution T Noise1.zoffset}
addUserKnob {26 noiseControlsText l "" +STARTLINE}
addUserKnob {41 blur T Blur1.size}
addUserKnob {41 detail T Noise1.lacunarity}
addUserKnob {41 gain T Noise1.gain}
addUserKnob {41 gamma T Noise1.gamma}
addUserKnob {26 formatLine l "" +STARTLINE}
addUserKnob {41 format T Constant1.format}
addUserKnob {26 maskLine l "" +STARTLINE}
addUserKnob {26 maskName l "mask (alpha)" T ""}
addUserKnob {41 inject -STARTLINE T Multiply1.inject}
addUserKnob {41 invert_mask l invert -STARTLINE T Multiply1.invert_mask}
addUserKnob {41 fringe -STARTLINE T Multiply1.fringe}
}
Input {
inputs 0
name mask
xpos 123
ypos -302
number 1
}
Invert {
name Invert1
xpos 123
ypos -29
}
Dot {
name Dot5
xpos 157
ypos 134
}
Constant {
inputs 0
channels rgb
name Constant1
xpos -258
ypos -314
}
Noise {
output {rgba.red -rgba.green -rgba.blue none}
size 70
zoffset {{frame/11}}
center {1600 900}
name Noise1
xpos -258
ypos -184
}
Grade {
channels {rgba.red -rgba.green -rgba.blue none}
add -0.2595
black_clamp false
name Grade1
xpos -258
ypos -143
}
Dot {
name Dot2
xpos -224
ypos -100
}
set N1e015c00 [stack 0]
Shuffle {
red black
green red
name Shuffle1
xpos -148
ypos -104
}
Mirror2 {
flop true
name Mirror2_1
xpos -38
ypos -104
}
Dot {
name Dot3
xpos -4
ypos -22
}
push $N1e015c00
Merge2 {
inputs 2
operation plus
name Merge1
xpos -258
ypos -26
}
Blur {
name Blur1
xpos -258
}
Multiply {
inputs 1+1
value 0
name Multiply1
xpos -258
ypos 125
disable {{"\[exists parent.input1.name]==0"}}
}
Dot {
name Dot1
xpos -224
ypos 237
}
Input {
inputs 0
name Input
xpos -447
ypos -304
}
Dot {
name Dot4
xpos -413
ypos -100
}
Copy {
inputs 2
from0 rgba.red
to0 forward.u
from1 rgba.green
to1 forward.v
name Copy2
xpos -447
ypos 220
}
set N1df9b000 [stack 0]
IDistort {
uv forward
uv_scale 160
name IDistort1
xpos -447
ypos 288
}
Remove {
channels forward
name Remove1
xpos -447
ypos 386
}
Output {
name Output1
xpos -447
ypos 633
}
push $N1df9b000
Viewer {
frame 1011
frame_range 1001-1001
fps 25
name Viewer1
selected true
xpos 148
ypos 439
}
end_group
EXPTool {
mode Stops
red -0.9999999977
green -0.9999999977
blue -0.9999999977
name Exposure4
xpos 60
ypos 631
}
Merge2 {
inputs 2
operation screen
bbox A
name Merge13
xpos 60
ypos 672
}
EXPTool {
mode Stops
red 0.15
green 0.15
blue 0.15
name Exposure5
xpos 60
ypos 717
}
Grade {
add -0.008
gamma 0.89
name Grade5
xpos 60
ypos 752
}
Group {
name TurbulentDisplace3
help "by Daniel van der Kaaden\nversion 2.2"
tile_color 0x9f6fb3ff
xpos 60
ypos 800
addUserKnob {20 User}
addUserKnob {41 amount T IDistort1.uv_scale}
addUserKnob {41 size T Noise1.size}
addUserKnob {41 evolution T Noise1.zoffset}
addUserKnob {26 noiseControlsText l "" +STARTLINE}
addUserKnob {41 blur T Blur1.size}
addUserKnob {41 detail T Noise1.lacunarity}
addUserKnob {41 gain T Noise1.gain}
addUserKnob {41 gamma T Noise1.gamma}
addUserKnob {26 formatLine l "" +STARTLINE}
addUserKnob {41 format T Constant1.format}
addUserKnob {26 maskLine l "" +STARTLINE}
addUserKnob {26 maskName l "mask (alpha)" T ""}
addUserKnob {41 inject -STARTLINE T Multiply1.inject}
addUserKnob {41 invert_mask l invert -STARTLINE T Multiply1.invert_mask}
addUserKnob {41 fringe -STARTLINE T Multiply1.fringe}
}
Input {
inputs 0
name mask
xpos 123
ypos -302
number 1
}
Invert {
name Invert1
xpos 123
ypos -29
}
Dot {
name Dot5
xpos 157
ypos 134
}
Constant {
inputs 0
channels rgb
name Constant1
xpos -258
ypos -314
}
Noise {
output {rgba.red -rgba.green -rgba.blue none}
size 13
zoffset {{frame/10}}
lacunarity 1.7
center {1600 900}
name Noise1
xpos -258
ypos -184
}
Grade {
channels {rgba.red -rgba.green -rgba.blue none}
add -0.2595
black_clamp false
name Grade1
xpos -258
ypos -143
}
Dot {
name Dot2
xpos -224
ypos -100
}
set N1e31f400 [stack 0]
Shuffle {
red black
green red
name Shuffle1
xpos -148
ypos -104
}
Mirror2 {
flop true
name Mirror2_1
xpos -38
ypos -104
}
Dot {
name Dot3
xpos -4
ypos -22
}
push $N1e31f400
Merge2 {
inputs 2
operation plus
name Merge1
xpos -258
ypos -26
}
Blur {
name Blur1
xpos -258
}
Multiply {