@volter/editor-blender 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/LICENSE +1409 -0
  2. package/README.md +17 -0
  3. package/contributions/blender-header-menus.tsx +483 -0
  4. package/contributions/blender-icon-trace.mjs +403 -0
  5. package/contributions/blender-icons.source.mjs +2925 -0
  6. package/contributions/blender-node-editor.document.tsx +1402 -0
  7. package/contributions/blender-node-geometry.ts +1138 -0
  8. package/contributions/blender-node-panels.source.mjs +485 -0
  9. package/contributions/blender-outliner-authoring.ts +1729 -0
  10. package/contributions/blender-outliner-model.ts +389 -0
  11. package/contributions/blender-palette.source.mjs +319 -0
  12. package/contributions/blender-properties-model.ts +351 -0
  13. package/contributions/blender-properties-tab.tsx +100 -0
  14. package/contributions/blender-properties-view.tsx +1191 -0
  15. package/contributions/blender-runtime-skin.ts +619 -0
  16. package/contributions/blender-runtime.document.tsx +232 -0
  17. package/contributions/blender-timeline-geometry.ts +323 -0
  18. package/contributions/blender-timeline.document.tsx +1056 -0
  19. package/contributions/blender-uv-editor.document.tsx +483 -0
  20. package/contributions/blender-uv-geometry.ts +305 -0
  21. package/contributions/blender-version.status.tsx +93 -0
  22. package/contributions/blender.command.ts +102 -0
  23. package/contributions/blender.icons.json +1247 -0
  24. package/contributions/blender.icons.traced.json +1561 -0
  25. package/contributions/blender.keymap.ts +39 -0
  26. package/contributions/blender.node-panels.json +2436 -0
  27. package/contributions/blender.palette.json +93 -0
  28. package/contributions/blender.status.tsx +263 -0
  29. package/contributions/blender.style.ts +271 -0
  30. package/contributions/model.layout.ts +53 -0
  31. package/contributions/models.finder.ts +59 -0
  32. package/contributions/properties-bone-constraints.inspector.tsx +50 -0
  33. package/contributions/properties-bone.inspector.tsx +184 -0
  34. package/contributions/properties-collection.inspector.tsx +96 -0
  35. package/contributions/properties-constraints.inspector.tsx +69 -0
  36. package/contributions/properties-data.inspector.tsx +229 -0
  37. package/contributions/properties-material.inspector.tsx +121 -0
  38. package/contributions/properties-modifiers.inspector.tsx +74 -0
  39. package/contributions/properties-object.inspector.tsx +215 -0
  40. package/contributions/properties-output.inspector.tsx +210 -0
  41. package/contributions/properties-particles.inspector.tsx +494 -0
  42. package/contributions/properties-physics.inspector.tsx +614 -0
  43. package/contributions/properties-render.inspector.tsx +446 -0
  44. package/contributions/properties-scene.inspector.tsx +174 -0
  45. package/contributions/properties-texture.inspector.tsx +300 -0
  46. package/contributions/properties-view-layer.inspector.tsx +145 -0
  47. package/contributions/properties-world.inspector.tsx +130 -0
  48. package/contributions/sculpt.layout.ts +25 -0
  49. package/contributions/shading.layout.ts +99 -0
  50. package/contributions/texture.layout.ts +16 -0
  51. package/contributions/uv-editing.layout.ts +93 -0
  52. package/host/blender-runtime-host.ts +1256 -0
  53. package/package.json +77 -0
  54. package/src/layouts.tsx +48 -0
  55. package/src/looks.ts +14 -0
  56. package/src/node-view-state.ts +125 -0
  57. package/src/timeline-view-state.ts +154 -0
  58. package/src/uv-view-state.ts +125 -0
@@ -0,0 +1,2436 @@
1
+ {
2
+ "CompositorNodeColorBalance": {
3
+ "customSocketOrder": true,
4
+ "items": [
5
+ {
6
+ "kind": "input",
7
+ "name": "Image"
8
+ },
9
+ {
10
+ "kind": "output",
11
+ "name": "Image",
12
+ "alignWithPrevious": true
13
+ },
14
+ {
15
+ "kind": "input",
16
+ "name": "Factor",
17
+ "identifier": "Fac"
18
+ },
19
+ {
20
+ "kind": "input",
21
+ "name": "Type"
22
+ },
23
+ {
24
+ "kind": "input",
25
+ "name": "Lift",
26
+ "identifier": "Base Lift"
27
+ },
28
+ {
29
+ "kind": "input",
30
+ "name": "Lift",
31
+ "identifier": "Color Lift"
32
+ },
33
+ {
34
+ "kind": "input",
35
+ "name": "Gamma",
36
+ "identifier": "Base Gamma"
37
+ },
38
+ {
39
+ "kind": "input",
40
+ "name": "Gamma",
41
+ "identifier": "Color Gamma"
42
+ },
43
+ {
44
+ "kind": "input",
45
+ "name": "Gain",
46
+ "identifier": "Base Gain"
47
+ },
48
+ {
49
+ "kind": "input",
50
+ "name": "Gain",
51
+ "identifier": "Color Gain"
52
+ },
53
+ {
54
+ "kind": "input",
55
+ "name": "Offset",
56
+ "identifier": "Base Offset"
57
+ },
58
+ {
59
+ "kind": "input",
60
+ "name": "Offset",
61
+ "identifier": "Color Offset"
62
+ },
63
+ {
64
+ "kind": "input",
65
+ "name": "Power",
66
+ "identifier": "Base Power"
67
+ },
68
+ {
69
+ "kind": "input",
70
+ "name": "Power",
71
+ "identifier": "Color Power"
72
+ },
73
+ {
74
+ "kind": "input",
75
+ "name": "Slope",
76
+ "identifier": "Base Slope"
77
+ },
78
+ {
79
+ "kind": "input",
80
+ "name": "Slope",
81
+ "identifier": "Color Slope"
82
+ },
83
+ {
84
+ "kind": "panel",
85
+ "name": "Input",
86
+ "items": [
87
+ {
88
+ "kind": "input",
89
+ "name": "Temperature",
90
+ "identifier": "Input Temperature"
91
+ },
92
+ {
93
+ "kind": "input",
94
+ "name": "Tint",
95
+ "identifier": "Input Tint"
96
+ },
97
+ {
98
+ "kind": "layout"
99
+ }
100
+ ]
101
+ },
102
+ {
103
+ "kind": "panel",
104
+ "name": "Output",
105
+ "items": [
106
+ {
107
+ "kind": "input",
108
+ "name": "Temperature",
109
+ "identifier": "Output Temperature"
110
+ },
111
+ {
112
+ "kind": "input",
113
+ "name": "Tint",
114
+ "identifier": "Output Tint"
115
+ },
116
+ {
117
+ "kind": "layout"
118
+ }
119
+ ]
120
+ }
121
+ ]
122
+ },
123
+ "CompositorNodeColorCorrection": {
124
+ "customSocketOrder": true,
125
+ "items": [
126
+ {
127
+ "kind": "input",
128
+ "name": "Image"
129
+ },
130
+ {
131
+ "kind": "output",
132
+ "name": "Image",
133
+ "alignWithPrevious": true
134
+ },
135
+ {
136
+ "kind": "input",
137
+ "name": "Mask"
138
+ },
139
+ {
140
+ "kind": "panel",
141
+ "name": "Master",
142
+ "items": [
143
+ {
144
+ "kind": "input",
145
+ "name": "Saturation",
146
+ "identifier": "Master Saturation"
147
+ },
148
+ {
149
+ "kind": "input",
150
+ "name": "Contrast",
151
+ "identifier": "Master Contrast"
152
+ },
153
+ {
154
+ "kind": "input",
155
+ "name": "Gamma",
156
+ "identifier": "Master Gamma"
157
+ },
158
+ {
159
+ "kind": "input",
160
+ "name": "Gain",
161
+ "identifier": "Master Gain"
162
+ },
163
+ {
164
+ "kind": "input",
165
+ "name": "Offset",
166
+ "identifier": "Master Offset"
167
+ }
168
+ ],
169
+ "defaultClosed": true
170
+ },
171
+ {
172
+ "kind": "panel",
173
+ "name": "Highlights",
174
+ "items": [
175
+ {
176
+ "kind": "input",
177
+ "name": "Saturation",
178
+ "identifier": "Highlights Saturation"
179
+ },
180
+ {
181
+ "kind": "input",
182
+ "name": "Contrast",
183
+ "identifier": "Highlights Contrast"
184
+ },
185
+ {
186
+ "kind": "input",
187
+ "name": "Gamma",
188
+ "identifier": "Highlights Gamma"
189
+ },
190
+ {
191
+ "kind": "input",
192
+ "name": "Gain",
193
+ "identifier": "Highlights Gain"
194
+ },
195
+ {
196
+ "kind": "input",
197
+ "name": "Offset",
198
+ "identifier": "Highlights Offset"
199
+ }
200
+ ],
201
+ "defaultClosed": true
202
+ },
203
+ {
204
+ "kind": "panel",
205
+ "name": "Midtones",
206
+ "items": [
207
+ {
208
+ "kind": "input",
209
+ "name": "Saturation",
210
+ "identifier": "Midtones Saturation"
211
+ },
212
+ {
213
+ "kind": "input",
214
+ "name": "Contrast",
215
+ "identifier": "Midtones Contrast"
216
+ },
217
+ {
218
+ "kind": "input",
219
+ "name": "Gamma",
220
+ "identifier": "Midtones Gamma"
221
+ },
222
+ {
223
+ "kind": "input",
224
+ "name": "Gain",
225
+ "identifier": "Midtones Gain"
226
+ },
227
+ {
228
+ "kind": "input",
229
+ "name": "Offset",
230
+ "identifier": "Midtones Offset"
231
+ }
232
+ ],
233
+ "defaultClosed": true
234
+ },
235
+ {
236
+ "kind": "panel",
237
+ "name": "Shadows",
238
+ "items": [
239
+ {
240
+ "kind": "input",
241
+ "name": "Saturation",
242
+ "identifier": "Shadows Saturation"
243
+ },
244
+ {
245
+ "kind": "input",
246
+ "name": "Contrast",
247
+ "identifier": "Shadows Contrast"
248
+ },
249
+ {
250
+ "kind": "input",
251
+ "name": "Gamma",
252
+ "identifier": "Shadows Gamma"
253
+ },
254
+ {
255
+ "kind": "input",
256
+ "name": "Gain",
257
+ "identifier": "Shadows Gain"
258
+ },
259
+ {
260
+ "kind": "input",
261
+ "name": "Offset",
262
+ "identifier": "Shadows Offset"
263
+ }
264
+ ],
265
+ "defaultClosed": true
266
+ },
267
+ {
268
+ "kind": "panel",
269
+ "name": "Tonal Range",
270
+ "items": [
271
+ {
272
+ "kind": "input",
273
+ "name": "Midtones Start"
274
+ },
275
+ {
276
+ "kind": "input",
277
+ "name": "Midtones End"
278
+ }
279
+ ],
280
+ "defaultClosed": true
281
+ },
282
+ {
283
+ "kind": "panel",
284
+ "name": "Channels",
285
+ "items": [
286
+ {
287
+ "kind": "input",
288
+ "name": "Red",
289
+ "identifier": "Apply On Red"
290
+ },
291
+ {
292
+ "kind": "input",
293
+ "name": "Green",
294
+ "identifier": "Apply On Green"
295
+ },
296
+ {
297
+ "kind": "input",
298
+ "name": "Blue",
299
+ "identifier": "Apply On Blue"
300
+ }
301
+ ],
302
+ "defaultClosed": true
303
+ }
304
+ ]
305
+ },
306
+ "CompositorNodeColorSpill": {
307
+ "customSocketOrder": true,
308
+ "items": [
309
+ {
310
+ "kind": "output",
311
+ "name": "Image"
312
+ },
313
+ {
314
+ "kind": "input",
315
+ "name": "Image"
316
+ },
317
+ {
318
+ "kind": "input",
319
+ "name": "Factor",
320
+ "identifier": "Fac"
321
+ },
322
+ {
323
+ "kind": "input",
324
+ "name": "Spill Channel"
325
+ },
326
+ {
327
+ "kind": "input",
328
+ "name": "Limit Method"
329
+ },
330
+ {
331
+ "kind": "input",
332
+ "name": "Limit Channel"
333
+ },
334
+ {
335
+ "kind": "input",
336
+ "name": "Limit Strength"
337
+ },
338
+ {
339
+ "kind": "panel",
340
+ "name": "Spill Strength",
341
+ "items": [
342
+ {
343
+ "kind": "input",
344
+ "name": "Use Spill Strength",
345
+ "panelToggle": true
346
+ },
347
+ {
348
+ "kind": "input",
349
+ "name": "Strength",
350
+ "identifier": "Spill Strength"
351
+ }
352
+ ],
353
+ "defaultClosed": true
354
+ }
355
+ ]
356
+ },
357
+ "CompositorNodeCornerPin": {
358
+ "customSocketOrder": true,
359
+ "items": [
360
+ {
361
+ "kind": "input",
362
+ "name": "Image"
363
+ },
364
+ {
365
+ "kind": "output",
366
+ "name": "Image",
367
+ "alignWithPrevious": true
368
+ },
369
+ {
370
+ "kind": "output",
371
+ "name": "Plane"
372
+ },
373
+ {
374
+ "kind": "input",
375
+ "name": "Upper Left"
376
+ },
377
+ {
378
+ "kind": "input",
379
+ "name": "Upper Right"
380
+ },
381
+ {
382
+ "kind": "input",
383
+ "name": "Lower Left"
384
+ },
385
+ {
386
+ "kind": "input",
387
+ "name": "Lower Right"
388
+ },
389
+ {
390
+ "kind": "panel",
391
+ "name": "Sampling",
392
+ "items": [
393
+ {
394
+ "kind": "input",
395
+ "name": "Interpolation"
396
+ },
397
+ {
398
+ "kind": "input",
399
+ "name": "Extension X"
400
+ },
401
+ {
402
+ "kind": "input",
403
+ "name": "Extension Y"
404
+ }
405
+ ],
406
+ "defaultClosed": true
407
+ }
408
+ ]
409
+ },
410
+ "CompositorNodeDBlur": {
411
+ "customSocketOrder": true,
412
+ "items": [
413
+ {
414
+ "kind": "input",
415
+ "name": "Image"
416
+ },
417
+ {
418
+ "kind": "output",
419
+ "name": "Image",
420
+ "alignWithPrevious": true
421
+ },
422
+ {
423
+ "kind": "input",
424
+ "name": "Samples"
425
+ },
426
+ {
427
+ "kind": "input",
428
+ "name": "Center"
429
+ },
430
+ {
431
+ "kind": "input",
432
+ "name": "Rotation"
433
+ },
434
+ {
435
+ "kind": "input",
436
+ "name": "Scale"
437
+ },
438
+ {
439
+ "kind": "panel",
440
+ "name": "Translation",
441
+ "items": [
442
+ {
443
+ "kind": "input",
444
+ "name": "Amount",
445
+ "identifier": "Translation Amount"
446
+ },
447
+ {
448
+ "kind": "input",
449
+ "name": "Direction",
450
+ "identifier": "Translation Direction"
451
+ }
452
+ ]
453
+ }
454
+ ]
455
+ },
456
+ "CompositorNodeDisplace": {
457
+ "customSocketOrder": true,
458
+ "items": [
459
+ {
460
+ "kind": "input",
461
+ "name": "Image"
462
+ },
463
+ {
464
+ "kind": "output",
465
+ "name": "Image",
466
+ "alignWithPrevious": true
467
+ },
468
+ {
469
+ "kind": "input",
470
+ "name": "Displacement"
471
+ },
472
+ {
473
+ "kind": "panel",
474
+ "name": "Sampling",
475
+ "items": [
476
+ {
477
+ "kind": "input",
478
+ "name": "Interpolation"
479
+ },
480
+ {
481
+ "kind": "input",
482
+ "name": "Extension X"
483
+ },
484
+ {
485
+ "kind": "input",
486
+ "name": "Extension Y"
487
+ }
488
+ ],
489
+ "defaultClosed": true
490
+ }
491
+ ]
492
+ },
493
+ "CompositorNodeGlare": {
494
+ "customSocketOrder": true,
495
+ "items": [
496
+ {
497
+ "kind": "input",
498
+ "name": "Image"
499
+ },
500
+ {
501
+ "kind": "output",
502
+ "name": "Image",
503
+ "alignWithPrevious": true
504
+ },
505
+ {
506
+ "kind": "output",
507
+ "name": "Glare"
508
+ },
509
+ {
510
+ "kind": "output",
511
+ "name": "Highlights"
512
+ },
513
+ {
514
+ "kind": "input",
515
+ "name": "Type"
516
+ },
517
+ {
518
+ "kind": "input",
519
+ "name": "Quality"
520
+ },
521
+ {
522
+ "kind": "panel",
523
+ "name": "Highlights",
524
+ "items": [
525
+ {
526
+ "kind": "input",
527
+ "name": "Threshold",
528
+ "identifier": "Highlights Threshold"
529
+ },
530
+ {
531
+ "kind": "input",
532
+ "name": "Smoothness",
533
+ "identifier": "Highlights Smoothness"
534
+ },
535
+ {
536
+ "kind": "panel",
537
+ "name": "Clamp",
538
+ "items": [
539
+ {
540
+ "kind": "input",
541
+ "name": "Clamp",
542
+ "identifier": "Clamp Highlights",
543
+ "panelToggle": true
544
+ },
545
+ {
546
+ "kind": "input",
547
+ "name": "Maximum",
548
+ "identifier": "Maximum Highlights"
549
+ }
550
+ ],
551
+ "defaultClosed": true
552
+ }
553
+ ],
554
+ "defaultClosed": true
555
+ },
556
+ {
557
+ "kind": "panel",
558
+ "name": "Adjust",
559
+ "items": [
560
+ {
561
+ "kind": "input",
562
+ "name": "Strength"
563
+ },
564
+ {
565
+ "kind": "input",
566
+ "name": "Saturation"
567
+ },
568
+ {
569
+ "kind": "input",
570
+ "name": "Tint"
571
+ }
572
+ ]
573
+ },
574
+ {
575
+ "kind": "panel",
576
+ "name": "Glare",
577
+ "items": [
578
+ {
579
+ "kind": "input",
580
+ "name": "Size"
581
+ },
582
+ {
583
+ "kind": "input",
584
+ "name": "Streaks"
585
+ },
586
+ {
587
+ "kind": "input",
588
+ "name": "Streaks Angle"
589
+ },
590
+ {
591
+ "kind": "input",
592
+ "name": "Iterations"
593
+ },
594
+ {
595
+ "kind": "input",
596
+ "name": "Fade"
597
+ },
598
+ {
599
+ "kind": "input",
600
+ "name": "Color Modulation"
601
+ },
602
+ {
603
+ "kind": "input",
604
+ "name": "Diagonal",
605
+ "identifier": "Diagonal Star"
606
+ },
607
+ {
608
+ "kind": "input",
609
+ "name": "Sun Position"
610
+ },
611
+ {
612
+ "kind": "input",
613
+ "name": "Jitter"
614
+ },
615
+ {
616
+ "kind": "input",
617
+ "name": "Kernel Data Type"
618
+ },
619
+ {
620
+ "kind": "input",
621
+ "name": "Kernel",
622
+ "identifier": "Float Kernel"
623
+ },
624
+ {
625
+ "kind": "input",
626
+ "name": "Kernel",
627
+ "identifier": "Color Kernel"
628
+ }
629
+ ]
630
+ }
631
+ ]
632
+ },
633
+ "CompositorNodeKeying": {
634
+ "customSocketOrder": true,
635
+ "items": [
636
+ {
637
+ "kind": "input",
638
+ "name": "Image"
639
+ },
640
+ {
641
+ "kind": "output",
642
+ "name": "Image",
643
+ "alignWithPrevious": true
644
+ },
645
+ {
646
+ "kind": "output",
647
+ "name": "Matte"
648
+ },
649
+ {
650
+ "kind": "output",
651
+ "name": "Edges"
652
+ },
653
+ {
654
+ "kind": "input",
655
+ "name": "Key Color"
656
+ },
657
+ {
658
+ "kind": "panel",
659
+ "name": "Preprocess",
660
+ "items": [
661
+ {
662
+ "kind": "input",
663
+ "name": "Blur Size",
664
+ "identifier": "Preprocess Blur Size"
665
+ }
666
+ ],
667
+ "defaultClosed": true
668
+ },
669
+ {
670
+ "kind": "panel",
671
+ "name": "Key",
672
+ "items": [
673
+ {
674
+ "kind": "input",
675
+ "name": "Balance",
676
+ "identifier": "Key Balance"
677
+ }
678
+ ],
679
+ "defaultClosed": true
680
+ },
681
+ {
682
+ "kind": "panel",
683
+ "name": "Tweak",
684
+ "items": [
685
+ {
686
+ "kind": "input",
687
+ "name": "Black Level"
688
+ },
689
+ {
690
+ "kind": "input",
691
+ "name": "White Level"
692
+ },
693
+ {
694
+ "kind": "panel",
695
+ "name": "Edges",
696
+ "items": [
697
+ {
698
+ "kind": "input",
699
+ "name": "Size",
700
+ "identifier": "Edge Search Size"
701
+ },
702
+ {
703
+ "kind": "input",
704
+ "name": "Tolerance",
705
+ "identifier": "Edge Tolerance"
706
+ }
707
+ ],
708
+ "defaultClosed": true
709
+ }
710
+ ],
711
+ "defaultClosed": true
712
+ },
713
+ {
714
+ "kind": "panel",
715
+ "name": "Mask",
716
+ "items": [
717
+ {
718
+ "kind": "input",
719
+ "name": "Garbage Matte"
720
+ },
721
+ {
722
+ "kind": "input",
723
+ "name": "Core Matte"
724
+ }
725
+ ],
726
+ "defaultClosed": true
727
+ },
728
+ {
729
+ "kind": "panel",
730
+ "name": "Postprocess",
731
+ "items": [
732
+ {
733
+ "kind": "input",
734
+ "name": "Blur Size",
735
+ "identifier": "Postprocess Blur Size"
736
+ },
737
+ {
738
+ "kind": "input",
739
+ "name": "Dilate Size",
740
+ "identifier": "Postprocess Dilate Size"
741
+ },
742
+ {
743
+ "kind": "input",
744
+ "name": "Feather Size",
745
+ "identifier": "Postprocess Feather Size"
746
+ },
747
+ {
748
+ "kind": "input",
749
+ "name": "Feather Falloff"
750
+ }
751
+ ],
752
+ "defaultClosed": true
753
+ },
754
+ {
755
+ "kind": "panel",
756
+ "name": "Despill",
757
+ "items": [
758
+ {
759
+ "kind": "input",
760
+ "name": "Strength",
761
+ "identifier": "Despill Strength"
762
+ },
763
+ {
764
+ "kind": "input",
765
+ "name": "Balance",
766
+ "identifier": "Despill Balance"
767
+ }
768
+ ],
769
+ "defaultClosed": true
770
+ }
771
+ ]
772
+ },
773
+ "CompositorNodeMapUV": {
774
+ "customSocketOrder": true,
775
+ "items": [
776
+ {
777
+ "kind": "input",
778
+ "name": "Image"
779
+ },
780
+ {
781
+ "kind": "output",
782
+ "name": "Image",
783
+ "alignWithPrevious": true
784
+ },
785
+ {
786
+ "kind": "input",
787
+ "name": "UV"
788
+ },
789
+ {
790
+ "kind": "panel",
791
+ "name": "Sampling",
792
+ "items": [
793
+ {
794
+ "kind": "input",
795
+ "name": "Interpolation"
796
+ },
797
+ {
798
+ "kind": "input",
799
+ "name": "Extension X"
800
+ },
801
+ {
802
+ "kind": "input",
803
+ "name": "Extension Y"
804
+ }
805
+ ],
806
+ "defaultClosed": true
807
+ }
808
+ ]
809
+ },
810
+ "CompositorNodeMask": {
811
+ "customSocketOrder": true,
812
+ "items": [
813
+ {
814
+ "kind": "output",
815
+ "name": "Mask"
816
+ },
817
+ {
818
+ "kind": "layout"
819
+ },
820
+ {
821
+ "kind": "input",
822
+ "name": "Size Source"
823
+ },
824
+ {
825
+ "kind": "input",
826
+ "name": "Size X"
827
+ },
828
+ {
829
+ "kind": "input",
830
+ "name": "Size Y"
831
+ },
832
+ {
833
+ "kind": "input",
834
+ "name": "Feather"
835
+ },
836
+ {
837
+ "kind": "panel",
838
+ "name": "Motion Blur",
839
+ "items": [
840
+ {
841
+ "kind": "input",
842
+ "name": "Motion Blur",
843
+ "panelToggle": true
844
+ },
845
+ {
846
+ "kind": "input",
847
+ "name": "Samples",
848
+ "identifier": "Motion Blur Samples"
849
+ },
850
+ {
851
+ "kind": "input",
852
+ "name": "Shutter",
853
+ "identifier": "Motion Blur Shutter"
854
+ }
855
+ ],
856
+ "defaultClosed": true
857
+ }
858
+ ]
859
+ },
860
+ "CompositorNodePlaneTrackDeform": {
861
+ "customSocketOrder": true,
862
+ "items": [
863
+ {
864
+ "kind": "input",
865
+ "name": "Image"
866
+ },
867
+ {
868
+ "kind": "output",
869
+ "name": "Image",
870
+ "alignWithPrevious": true
871
+ },
872
+ {
873
+ "kind": "output",
874
+ "name": "Plane"
875
+ },
876
+ {
877
+ "kind": "layout"
878
+ },
879
+ {
880
+ "kind": "panel",
881
+ "name": "Motion Blur",
882
+ "items": [
883
+ {
884
+ "kind": "input",
885
+ "name": "Motion Blur",
886
+ "panelToggle": true
887
+ },
888
+ {
889
+ "kind": "input",
890
+ "name": "Samples",
891
+ "identifier": "Motion Blur Samples"
892
+ },
893
+ {
894
+ "kind": "input",
895
+ "name": "Shutter",
896
+ "identifier": "Motion Blur Shutter"
897
+ }
898
+ ],
899
+ "defaultClosed": true
900
+ }
901
+ ]
902
+ },
903
+ "CompositorNodeRotate": {
904
+ "customSocketOrder": true,
905
+ "items": [
906
+ {
907
+ "kind": "input",
908
+ "name": "Image"
909
+ },
910
+ {
911
+ "kind": "output",
912
+ "name": "Image",
913
+ "alignWithPrevious": true
914
+ },
915
+ {
916
+ "kind": "input",
917
+ "name": "Angle"
918
+ },
919
+ {
920
+ "kind": "panel",
921
+ "name": "Sampling",
922
+ "items": [
923
+ {
924
+ "kind": "input",
925
+ "name": "Interpolation"
926
+ },
927
+ {
928
+ "kind": "input",
929
+ "name": "Extension X"
930
+ },
931
+ {
932
+ "kind": "input",
933
+ "name": "Extension Y"
934
+ }
935
+ ],
936
+ "defaultClosed": true
937
+ }
938
+ ]
939
+ },
940
+ "CompositorNodeScale": {
941
+ "customSocketOrder": true,
942
+ "items": [
943
+ {
944
+ "kind": "input",
945
+ "name": "Image"
946
+ },
947
+ {
948
+ "kind": "output",
949
+ "name": "Image",
950
+ "alignWithPrevious": true
951
+ },
952
+ {
953
+ "kind": "input",
954
+ "name": "Type"
955
+ },
956
+ {
957
+ "kind": "input",
958
+ "name": "X"
959
+ },
960
+ {
961
+ "kind": "input",
962
+ "name": "Y"
963
+ },
964
+ {
965
+ "kind": "input",
966
+ "name": "Frame Type"
967
+ },
968
+ {
969
+ "kind": "panel",
970
+ "name": "Sampling",
971
+ "items": [
972
+ {
973
+ "kind": "input",
974
+ "name": "Interpolation"
975
+ },
976
+ {
977
+ "kind": "input",
978
+ "name": "Extension X"
979
+ },
980
+ {
981
+ "kind": "input",
982
+ "name": "Extension Y"
983
+ }
984
+ ],
985
+ "defaultClosed": true
986
+ }
987
+ ]
988
+ },
989
+ "CompositorNodeStabilize": {
990
+ "customSocketOrder": true,
991
+ "items": [
992
+ {
993
+ "kind": "input",
994
+ "name": "Image"
995
+ },
996
+ {
997
+ "kind": "output",
998
+ "name": "Image",
999
+ "alignWithPrevious": true
1000
+ },
1001
+ {
1002
+ "kind": "layout"
1003
+ },
1004
+ {
1005
+ "kind": "input",
1006
+ "name": "Frame"
1007
+ },
1008
+ {
1009
+ "kind": "input",
1010
+ "name": "Invert"
1011
+ },
1012
+ {
1013
+ "kind": "panel",
1014
+ "name": "Sampling",
1015
+ "items": [
1016
+ {
1017
+ "kind": "input",
1018
+ "name": "Interpolation"
1019
+ },
1020
+ {
1021
+ "kind": "input",
1022
+ "name": "Extension X"
1023
+ },
1024
+ {
1025
+ "kind": "input",
1026
+ "name": "Extension Y"
1027
+ }
1028
+ ],
1029
+ "defaultClosed": true
1030
+ }
1031
+ ]
1032
+ },
1033
+ "CompositorNodeStringToImage": {
1034
+ "customSocketOrder": true,
1035
+ "items": [
1036
+ {
1037
+ "kind": "output",
1038
+ "name": "Image"
1039
+ },
1040
+ {
1041
+ "kind": "input",
1042
+ "name": "String"
1043
+ },
1044
+ {
1045
+ "kind": "input",
1046
+ "name": "Font"
1047
+ },
1048
+ {
1049
+ "kind": "input",
1050
+ "name": "Size"
1051
+ },
1052
+ {
1053
+ "kind": "panel",
1054
+ "name": "Alignment",
1055
+ "items": [
1056
+ {
1057
+ "kind": "input",
1058
+ "name": "Horizontal Alignment"
1059
+ },
1060
+ {
1061
+ "kind": "input",
1062
+ "name": "Vertical Alignment"
1063
+ }
1064
+ ],
1065
+ "defaultClosed": true
1066
+ },
1067
+ {
1068
+ "kind": "panel",
1069
+ "name": "Wrap",
1070
+ "items": [
1071
+ {
1072
+ "kind": "input",
1073
+ "name": "Wrap",
1074
+ "panelToggle": true
1075
+ },
1076
+ {
1077
+ "kind": "input",
1078
+ "name": "Width",
1079
+ "identifier": "Wrap Width"
1080
+ }
1081
+ ],
1082
+ "defaultClosed": true
1083
+ }
1084
+ ]
1085
+ },
1086
+ "CompositorNodeTransform": {
1087
+ "customSocketOrder": true,
1088
+ "items": [
1089
+ {
1090
+ "kind": "input",
1091
+ "name": "Image"
1092
+ },
1093
+ {
1094
+ "kind": "output",
1095
+ "name": "Image",
1096
+ "alignWithPrevious": true
1097
+ },
1098
+ {
1099
+ "kind": "input",
1100
+ "name": "X"
1101
+ },
1102
+ {
1103
+ "kind": "input",
1104
+ "name": "Y"
1105
+ },
1106
+ {
1107
+ "kind": "input",
1108
+ "name": "Angle"
1109
+ },
1110
+ {
1111
+ "kind": "input",
1112
+ "name": "Scale"
1113
+ },
1114
+ {
1115
+ "kind": "panel",
1116
+ "name": "Sampling",
1117
+ "items": [
1118
+ {
1119
+ "kind": "input",
1120
+ "name": "Interpolation"
1121
+ },
1122
+ {
1123
+ "kind": "input",
1124
+ "name": "Extension X"
1125
+ },
1126
+ {
1127
+ "kind": "input",
1128
+ "name": "Extension Y"
1129
+ }
1130
+ ],
1131
+ "defaultClosed": true
1132
+ }
1133
+ ]
1134
+ },
1135
+ "CompositorNodeTranslate": {
1136
+ "customSocketOrder": true,
1137
+ "items": [
1138
+ {
1139
+ "kind": "input",
1140
+ "name": "Image"
1141
+ },
1142
+ {
1143
+ "kind": "output",
1144
+ "name": "Image",
1145
+ "alignWithPrevious": true
1146
+ },
1147
+ {
1148
+ "kind": "input",
1149
+ "name": "X"
1150
+ },
1151
+ {
1152
+ "kind": "input",
1153
+ "name": "Y"
1154
+ },
1155
+ {
1156
+ "kind": "panel",
1157
+ "name": "Sampling",
1158
+ "items": [
1159
+ {
1160
+ "kind": "input",
1161
+ "name": "Interpolation"
1162
+ },
1163
+ {
1164
+ "kind": "input",
1165
+ "name": "Extension X"
1166
+ },
1167
+ {
1168
+ "kind": "input",
1169
+ "name": "Extension Y"
1170
+ }
1171
+ ],
1172
+ "defaultClosed": true
1173
+ }
1174
+ ]
1175
+ },
1176
+ "FunctionNodeCombineMatrix": {
1177
+ "customSocketOrder": true,
1178
+ "items": [
1179
+ {
1180
+ "kind": "output",
1181
+ "name": "Matrix"
1182
+ },
1183
+ {
1184
+ "kind": "panel",
1185
+ "name": "Column 1",
1186
+ "items": [
1187
+ {
1188
+ "kind": "input",
1189
+ "name": "Column 1 Row 1"
1190
+ },
1191
+ {
1192
+ "kind": "input",
1193
+ "name": "Column 1 Row 2"
1194
+ },
1195
+ {
1196
+ "kind": "input",
1197
+ "name": "Column 1 Row 3"
1198
+ },
1199
+ {
1200
+ "kind": "input",
1201
+ "name": "Column 1 Row 4"
1202
+ }
1203
+ ],
1204
+ "defaultClosed": true
1205
+ },
1206
+ {
1207
+ "kind": "panel",
1208
+ "name": "Column 2",
1209
+ "items": [
1210
+ {
1211
+ "kind": "input",
1212
+ "name": "Column 2 Row 1"
1213
+ },
1214
+ {
1215
+ "kind": "input",
1216
+ "name": "Column 2 Row 2"
1217
+ },
1218
+ {
1219
+ "kind": "input",
1220
+ "name": "Column 2 Row 3"
1221
+ },
1222
+ {
1223
+ "kind": "input",
1224
+ "name": "Column 2 Row 4"
1225
+ }
1226
+ ],
1227
+ "defaultClosed": true
1228
+ },
1229
+ {
1230
+ "kind": "panel",
1231
+ "name": "Column 3",
1232
+ "items": [
1233
+ {
1234
+ "kind": "input",
1235
+ "name": "Column 3 Row 1"
1236
+ },
1237
+ {
1238
+ "kind": "input",
1239
+ "name": "Column 3 Row 2"
1240
+ },
1241
+ {
1242
+ "kind": "input",
1243
+ "name": "Column 3 Row 3"
1244
+ },
1245
+ {
1246
+ "kind": "input",
1247
+ "name": "Column 3 Row 4"
1248
+ }
1249
+ ],
1250
+ "defaultClosed": true
1251
+ },
1252
+ {
1253
+ "kind": "panel",
1254
+ "name": "Column 4",
1255
+ "items": [
1256
+ {
1257
+ "kind": "input",
1258
+ "name": "Column 4 Row 1"
1259
+ },
1260
+ {
1261
+ "kind": "input",
1262
+ "name": "Column 4 Row 2"
1263
+ },
1264
+ {
1265
+ "kind": "input",
1266
+ "name": "Column 4 Row 3"
1267
+ },
1268
+ {
1269
+ "kind": "input",
1270
+ "name": "Column 4 Row 4"
1271
+ }
1272
+ ],
1273
+ "defaultClosed": true
1274
+ }
1275
+ ]
1276
+ },
1277
+ "FunctionNodeSeparateMatrix": {
1278
+ "customSocketOrder": true,
1279
+ "items": [
1280
+ {
1281
+ "kind": "panel",
1282
+ "name": "Column 1",
1283
+ "items": [
1284
+ {
1285
+ "kind": "output",
1286
+ "name": "Column 1 Row 1"
1287
+ },
1288
+ {
1289
+ "kind": "output",
1290
+ "name": "Column 1 Row 2"
1291
+ },
1292
+ {
1293
+ "kind": "output",
1294
+ "name": "Column 1 Row 3"
1295
+ },
1296
+ {
1297
+ "kind": "output",
1298
+ "name": "Column 1 Row 4"
1299
+ }
1300
+ ],
1301
+ "defaultClosed": true
1302
+ },
1303
+ {
1304
+ "kind": "panel",
1305
+ "name": "Column 2",
1306
+ "items": [
1307
+ {
1308
+ "kind": "output",
1309
+ "name": "Column 2 Row 1"
1310
+ },
1311
+ {
1312
+ "kind": "output",
1313
+ "name": "Column 2 Row 2"
1314
+ },
1315
+ {
1316
+ "kind": "output",
1317
+ "name": "Column 2 Row 3"
1318
+ },
1319
+ {
1320
+ "kind": "output",
1321
+ "name": "Column 2 Row 4"
1322
+ }
1323
+ ],
1324
+ "defaultClosed": true
1325
+ },
1326
+ {
1327
+ "kind": "panel",
1328
+ "name": "Column 3",
1329
+ "items": [
1330
+ {
1331
+ "kind": "output",
1332
+ "name": "Column 3 Row 1"
1333
+ },
1334
+ {
1335
+ "kind": "output",
1336
+ "name": "Column 3 Row 2"
1337
+ },
1338
+ {
1339
+ "kind": "output",
1340
+ "name": "Column 3 Row 3"
1341
+ },
1342
+ {
1343
+ "kind": "output",
1344
+ "name": "Column 3 Row 4"
1345
+ }
1346
+ ],
1347
+ "defaultClosed": true
1348
+ },
1349
+ {
1350
+ "kind": "panel",
1351
+ "name": "Column 4",
1352
+ "items": [
1353
+ {
1354
+ "kind": "output",
1355
+ "name": "Column 4 Row 1"
1356
+ },
1357
+ {
1358
+ "kind": "output",
1359
+ "name": "Column 4 Row 2"
1360
+ },
1361
+ {
1362
+ "kind": "output",
1363
+ "name": "Column 4 Row 3"
1364
+ },
1365
+ {
1366
+ "kind": "output",
1367
+ "name": "Column 4 Row 4"
1368
+ }
1369
+ ],
1370
+ "defaultClosed": true
1371
+ },
1372
+ {
1373
+ "kind": "input",
1374
+ "name": "Matrix"
1375
+ }
1376
+ ]
1377
+ },
1378
+ "FunctionNodeTrimString": {
1379
+ "customSocketOrder": true,
1380
+ "items": [
1381
+ {
1382
+ "kind": "input",
1383
+ "name": "String"
1384
+ },
1385
+ {
1386
+ "kind": "output",
1387
+ "name": "String",
1388
+ "alignWithPrevious": true
1389
+ },
1390
+ {
1391
+ "kind": "input",
1392
+ "name": "Characters"
1393
+ },
1394
+ {
1395
+ "kind": "input",
1396
+ "name": "Whitespace"
1397
+ },
1398
+ {
1399
+ "kind": "panel",
1400
+ "name": "Limit",
1401
+ "items": [
1402
+ {
1403
+ "kind": "input",
1404
+ "name": "Start"
1405
+ },
1406
+ {
1407
+ "kind": "input",
1408
+ "name": "End"
1409
+ }
1410
+ ],
1411
+ "defaultClosed": true
1412
+ }
1413
+ ]
1414
+ },
1415
+ "GeometryNodeCubeGridTopology": {
1416
+ "customSocketOrder": true,
1417
+ "items": [
1418
+ {
1419
+ "kind": "output",
1420
+ "name": "Topology"
1421
+ },
1422
+ {
1423
+ "kind": "input",
1424
+ "name": "Bounds Min"
1425
+ },
1426
+ {
1427
+ "kind": "input",
1428
+ "name": "Bounds Max"
1429
+ },
1430
+ {
1431
+ "kind": "input",
1432
+ "name": "Resolution X"
1433
+ },
1434
+ {
1435
+ "kind": "input",
1436
+ "name": "Resolution Y"
1437
+ },
1438
+ {
1439
+ "kind": "input",
1440
+ "name": "Resolution Z"
1441
+ },
1442
+ {
1443
+ "kind": "panel",
1444
+ "name": "Min",
1445
+ "items": [
1446
+ {
1447
+ "kind": "input",
1448
+ "name": "Min X"
1449
+ },
1450
+ {
1451
+ "kind": "input",
1452
+ "name": "Min Y"
1453
+ },
1454
+ {
1455
+ "kind": "input",
1456
+ "name": "Min Z"
1457
+ }
1458
+ ],
1459
+ "defaultClosed": true
1460
+ }
1461
+ ]
1462
+ },
1463
+ "GeometryNodeForeachGeometryElementOutput": {
1464
+ "customSocketOrder": true,
1465
+ "conditional": true,
1466
+ "items": [
1467
+ {
1468
+ "kind": "output",
1469
+ "name": "Geometry"
1470
+ },
1471
+ {
1472
+ "kind": "input",
1473
+ "name": "",
1474
+ "identifier": "__extend__main"
1475
+ },
1476
+ {
1477
+ "kind": "output",
1478
+ "name": "",
1479
+ "identifier": "__extend__main",
1480
+ "alignWithPrevious": true
1481
+ },
1482
+ {
1483
+ "kind": "panel",
1484
+ "name": "Generated",
1485
+ "items": [
1486
+ {
1487
+ "kind": "separator"
1488
+ },
1489
+ {
1490
+ "kind": "input",
1491
+ "name": "",
1492
+ "identifier": "__extend__generation"
1493
+ },
1494
+ {
1495
+ "kind": "output",
1496
+ "name": "",
1497
+ "identifier": "__extend__generation",
1498
+ "alignWithPrevious": true
1499
+ }
1500
+ ]
1501
+ }
1502
+ ]
1503
+ },
1504
+ "GeometryNodeGetAttributeNames": {
1505
+ "customSocketOrder": true,
1506
+ "items": [
1507
+ {
1508
+ "kind": "output",
1509
+ "name": "Names"
1510
+ },
1511
+ {
1512
+ "kind": "input",
1513
+ "name": "Geometry"
1514
+ },
1515
+ {
1516
+ "kind": "panel",
1517
+ "name": "Filter Data Type",
1518
+ "items": [
1519
+ {
1520
+ "kind": "input",
1521
+ "name": "Filter Data Type",
1522
+ "panelToggle": true
1523
+ },
1524
+ {
1525
+ "kind": "input",
1526
+ "name": "Data Type"
1527
+ }
1528
+ ]
1529
+ },
1530
+ {
1531
+ "kind": "panel",
1532
+ "name": "Filter Domain",
1533
+ "items": [
1534
+ {
1535
+ "kind": "input",
1536
+ "name": "Filter Domain",
1537
+ "panelToggle": true
1538
+ },
1539
+ {
1540
+ "kind": "input",
1541
+ "name": "Domain"
1542
+ }
1543
+ ]
1544
+ }
1545
+ ]
1546
+ },
1547
+ "GeometryNodeGridToPoints": {
1548
+ "customSocketOrder": true,
1549
+ "conditional": true,
1550
+ "items": [
1551
+ {
1552
+ "kind": "layout"
1553
+ },
1554
+ {
1555
+ "kind": "output",
1556
+ "name": "Points"
1557
+ },
1558
+ {
1559
+ "kind": "output",
1560
+ "name": "Value"
1561
+ },
1562
+ {
1563
+ "kind": "panel",
1564
+ "name": "Voxel Index",
1565
+ "items": [
1566
+ {
1567
+ "kind": "output",
1568
+ "name": "X"
1569
+ },
1570
+ {
1571
+ "kind": "output",
1572
+ "name": "Y"
1573
+ },
1574
+ {
1575
+ "kind": "output",
1576
+ "name": "Z"
1577
+ },
1578
+ {
1579
+ "kind": "output",
1580
+ "name": "Is Tile"
1581
+ },
1582
+ {
1583
+ "kind": "output",
1584
+ "name": "Extent"
1585
+ }
1586
+ ],
1587
+ "defaultClosed": true
1588
+ },
1589
+ {
1590
+ "kind": "input",
1591
+ "name": "Grid"
1592
+ }
1593
+ ]
1594
+ },
1595
+ "GeometryNodeInputVoxelIndex": {
1596
+ "customSocketOrder": true,
1597
+ "items": [
1598
+ {
1599
+ "kind": "output",
1600
+ "name": "X"
1601
+ },
1602
+ {
1603
+ "kind": "output",
1604
+ "name": "Y"
1605
+ },
1606
+ {
1607
+ "kind": "output",
1608
+ "name": "Z"
1609
+ },
1610
+ {
1611
+ "kind": "panel",
1612
+ "name": "Tile",
1613
+ "items": [
1614
+ {
1615
+ "kind": "output",
1616
+ "name": "Is Tile"
1617
+ },
1618
+ {
1619
+ "kind": "output",
1620
+ "name": "Extent X"
1621
+ },
1622
+ {
1623
+ "kind": "output",
1624
+ "name": "Extent Y"
1625
+ },
1626
+ {
1627
+ "kind": "output",
1628
+ "name": "Extent Z"
1629
+ }
1630
+ ],
1631
+ "defaultClosed": true
1632
+ }
1633
+ ]
1634
+ },
1635
+ "GeometryNodeMeshBevel": {
1636
+ "customSocketOrder": true,
1637
+ "items": [
1638
+ {
1639
+ "kind": "input",
1640
+ "name": "Mesh"
1641
+ },
1642
+ {
1643
+ "kind": "output",
1644
+ "name": "Mesh",
1645
+ "alignWithPrevious": true
1646
+ },
1647
+ {
1648
+ "kind": "input",
1649
+ "name": "Selection"
1650
+ },
1651
+ {
1652
+ "kind": "input",
1653
+ "name": "Affect Kind"
1654
+ },
1655
+ {
1656
+ "kind": "input",
1657
+ "name": "Start Left Offset"
1658
+ },
1659
+ {
1660
+ "kind": "input",
1661
+ "name": "Start Right Offset"
1662
+ },
1663
+ {
1664
+ "kind": "input",
1665
+ "name": "End Left Offset"
1666
+ },
1667
+ {
1668
+ "kind": "input",
1669
+ "name": "End Right Offset"
1670
+ },
1671
+ {
1672
+ "kind": "input",
1673
+ "name": "Offset"
1674
+ },
1675
+ {
1676
+ "kind": "input",
1677
+ "name": "Miter"
1678
+ },
1679
+ {
1680
+ "kind": "input",
1681
+ "name": "Spread"
1682
+ },
1683
+ {
1684
+ "kind": "input",
1685
+ "name": "Segments"
1686
+ },
1687
+ {
1688
+ "kind": "input",
1689
+ "name": "Shape"
1690
+ },
1691
+ {
1692
+ "kind": "input",
1693
+ "name": "Profile"
1694
+ },
1695
+ {
1696
+ "kind": "panel",
1697
+ "name": "Selections",
1698
+ "items": [
1699
+ {
1700
+ "kind": "output",
1701
+ "name": "Vertex Face"
1702
+ },
1703
+ {
1704
+ "kind": "output",
1705
+ "name": "Edge Face"
1706
+ },
1707
+ {
1708
+ "kind": "output",
1709
+ "name": "Outer Edge"
1710
+ },
1711
+ {
1712
+ "kind": "output",
1713
+ "name": "Mid Edge"
1714
+ }
1715
+ ]
1716
+ }
1717
+ ]
1718
+ },
1719
+ "GeometryNodeSampleSoundFrequencies": {
1720
+ "customSocketOrder": true,
1721
+ "items": [
1722
+ {
1723
+ "kind": "output",
1724
+ "name": "Amplitude"
1725
+ },
1726
+ {
1727
+ "kind": "input",
1728
+ "name": "Sound"
1729
+ },
1730
+ {
1731
+ "kind": "input",
1732
+ "name": "Time"
1733
+ },
1734
+ {
1735
+ "kind": "input",
1736
+ "name": "All Channels"
1737
+ },
1738
+ {
1739
+ "kind": "input",
1740
+ "name": "Channel"
1741
+ },
1742
+ {
1743
+ "kind": "input",
1744
+ "name": "Low"
1745
+ },
1746
+ {
1747
+ "kind": "input",
1748
+ "name": "High"
1749
+ },
1750
+ {
1751
+ "kind": "panel",
1752
+ "name": "FFT",
1753
+ "items": [
1754
+ {
1755
+ "kind": "input",
1756
+ "name": "FFT Size"
1757
+ },
1758
+ {
1759
+ "kind": "input",
1760
+ "name": "Window Function"
1761
+ }
1762
+ ],
1763
+ "defaultClosed": true
1764
+ }
1765
+ ]
1766
+ },
1767
+ "GeometryNodeStringToCurves": {
1768
+ "customSocketOrder": true,
1769
+ "items": [
1770
+ {
1771
+ "kind": "output",
1772
+ "name": "Curve Instances"
1773
+ },
1774
+ {
1775
+ "kind": "output",
1776
+ "name": "Remainder"
1777
+ },
1778
+ {
1779
+ "kind": "output",
1780
+ "name": "Line"
1781
+ },
1782
+ {
1783
+ "kind": "output",
1784
+ "name": "Word"
1785
+ },
1786
+ {
1787
+ "kind": "output",
1788
+ "name": "Pivot Point"
1789
+ },
1790
+ {
1791
+ "kind": "input",
1792
+ "name": "String"
1793
+ },
1794
+ {
1795
+ "kind": "input",
1796
+ "name": "Size"
1797
+ },
1798
+ {
1799
+ "kind": "input",
1800
+ "name": "Font"
1801
+ },
1802
+ {
1803
+ "kind": "panel",
1804
+ "name": "Alignment",
1805
+ "items": [
1806
+ {
1807
+ "kind": "input",
1808
+ "name": "Align X"
1809
+ },
1810
+ {
1811
+ "kind": "input",
1812
+ "name": "Align Y"
1813
+ },
1814
+ {
1815
+ "kind": "input",
1816
+ "name": "Pivot Point"
1817
+ }
1818
+ ],
1819
+ "defaultClosed": true
1820
+ },
1821
+ {
1822
+ "kind": "panel",
1823
+ "name": "Spacing",
1824
+ "items": [
1825
+ {
1826
+ "kind": "input",
1827
+ "name": "Character Spacing"
1828
+ },
1829
+ {
1830
+ "kind": "input",
1831
+ "name": "Word Spacing"
1832
+ },
1833
+ {
1834
+ "kind": "input",
1835
+ "name": "Line Spacing"
1836
+ }
1837
+ ],
1838
+ "defaultClosed": true
1839
+ },
1840
+ {
1841
+ "kind": "panel",
1842
+ "name": "Text Box",
1843
+ "items": [
1844
+ {
1845
+ "kind": "input",
1846
+ "name": "Overflow"
1847
+ },
1848
+ {
1849
+ "kind": "input",
1850
+ "name": "Text Box Width"
1851
+ },
1852
+ {
1853
+ "kind": "input",
1854
+ "name": "Text Box Height"
1855
+ }
1856
+ ],
1857
+ "defaultClosed": true
1858
+ }
1859
+ ]
1860
+ },
1861
+ "GeometryNodeTransferAttributes": {
1862
+ "customSocketOrder": true,
1863
+ "conditional": true,
1864
+ "items": [
1865
+ {
1866
+ "kind": "input",
1867
+ "name": "Target"
1868
+ },
1869
+ {
1870
+ "kind": "output",
1871
+ "name": "Target",
1872
+ "alignWithPrevious": true
1873
+ },
1874
+ {
1875
+ "kind": "output",
1876
+ "name": "Transferred Names"
1877
+ },
1878
+ {
1879
+ "kind": "panel",
1880
+ "name": "Target IDs",
1881
+ "items": [],
1882
+ "defaultClosed": true
1883
+ },
1884
+ {
1885
+ "kind": "input",
1886
+ "name": "Source"
1887
+ },
1888
+ {
1889
+ "kind": "panel",
1890
+ "name": "Source IDs",
1891
+ "items": [],
1892
+ "defaultClosed": true
1893
+ },
1894
+ {
1895
+ "kind": "input",
1896
+ "name": "Pattern Mode"
1897
+ },
1898
+ {
1899
+ "kind": "input",
1900
+ "name": "Attribute Names"
1901
+ },
1902
+ {
1903
+ "kind": "input",
1904
+ "name": "Exclude Names"
1905
+ }
1906
+ ]
1907
+ },
1908
+ "GeometryNodeXPBDSolver": {
1909
+ "customSocketOrder": true,
1910
+ "items": [
1911
+ {
1912
+ "kind": "input",
1913
+ "name": "World"
1914
+ },
1915
+ {
1916
+ "kind": "output",
1917
+ "name": "World",
1918
+ "alignWithPrevious": true
1919
+ },
1920
+ {
1921
+ "kind": "input",
1922
+ "name": "Delta Time"
1923
+ },
1924
+ {
1925
+ "kind": "input",
1926
+ "name": "Filter"
1927
+ },
1928
+ {
1929
+ "kind": "input",
1930
+ "name": "Simulation to World"
1931
+ },
1932
+ {
1933
+ "kind": "panel",
1934
+ "name": "Solver",
1935
+ "items": [
1936
+ {
1937
+ "kind": "input",
1938
+ "name": "Substeps"
1939
+ },
1940
+ {
1941
+ "kind": "input",
1942
+ "name": "Constraint Iterations"
1943
+ },
1944
+ {
1945
+ "kind": "input",
1946
+ "name": "Solver Path"
1947
+ }
1948
+ ],
1949
+ "defaultClosed": true
1950
+ },
1951
+ {
1952
+ "kind": "panel",
1953
+ "name": "Interpolation Range",
1954
+ "items": [
1955
+ {
1956
+ "kind": "input",
1957
+ "name": "Begin"
1958
+ },
1959
+ {
1960
+ "kind": "input",
1961
+ "name": "End"
1962
+ }
1963
+ ],
1964
+ "defaultClosed": true
1965
+ }
1966
+ ]
1967
+ },
1968
+ "NodeEvaluateClosure": {
1969
+ "customSocketOrder": true,
1970
+ "conditional": true,
1971
+ "items": [
1972
+ {
1973
+ "kind": "input",
1974
+ "name": "Closure"
1975
+ },
1976
+ {
1977
+ "kind": "panel",
1978
+ "name": "Interface",
1979
+ "items": [
1980
+ {
1981
+ "kind": "output",
1982
+ "name": "",
1983
+ "identifier": "__extend__"
1984
+ },
1985
+ {
1986
+ "kind": "input",
1987
+ "name": "",
1988
+ "identifier": "__extend__"
1989
+ }
1990
+ ]
1991
+ }
1992
+ ]
1993
+ },
1994
+ "ShaderNodeBsdfGlass": {
1995
+ "customSocketOrder": true,
1996
+ "items": [
1997
+ {
1998
+ "kind": "output",
1999
+ "name": "BSDF"
2000
+ },
2001
+ {
2002
+ "kind": "layout"
2003
+ },
2004
+ {
2005
+ "kind": "input",
2006
+ "name": "Color"
2007
+ },
2008
+ {
2009
+ "kind": "input",
2010
+ "name": "Roughness"
2011
+ },
2012
+ {
2013
+ "kind": "input",
2014
+ "name": "IOR"
2015
+ },
2016
+ {
2017
+ "kind": "input",
2018
+ "name": "Normal"
2019
+ },
2020
+ {
2021
+ "kind": "input",
2022
+ "name": "Weight",
2023
+ "conditional": true
2024
+ },
2025
+ {
2026
+ "kind": "panel",
2027
+ "name": "Thin Film",
2028
+ "items": [
2029
+ {
2030
+ "kind": "input",
2031
+ "name": "Thin Film Thickness"
2032
+ },
2033
+ {
2034
+ "kind": "input",
2035
+ "name": "Thin Film IOR"
2036
+ }
2037
+ ],
2038
+ "defaultClosed": true
2039
+ }
2040
+ ]
2041
+ },
2042
+ "ShaderNodeBsdfMetallic": {
2043
+ "customSocketOrder": true,
2044
+ "items": [
2045
+ {
2046
+ "kind": "output",
2047
+ "name": "BSDF"
2048
+ },
2049
+ {
2050
+ "kind": "layout"
2051
+ },
2052
+ {
2053
+ "kind": "input",
2054
+ "name": "Base Color"
2055
+ },
2056
+ {
2057
+ "kind": "input",
2058
+ "name": "Edge Tint"
2059
+ },
2060
+ {
2061
+ "kind": "input",
2062
+ "name": "IOR"
2063
+ },
2064
+ {
2065
+ "kind": "input",
2066
+ "name": "Extinction"
2067
+ },
2068
+ {
2069
+ "kind": "input",
2070
+ "name": "Roughness"
2071
+ },
2072
+ {
2073
+ "kind": "input",
2074
+ "name": "Anisotropy"
2075
+ },
2076
+ {
2077
+ "kind": "input",
2078
+ "name": "Rotation"
2079
+ },
2080
+ {
2081
+ "kind": "input",
2082
+ "name": "Normal"
2083
+ },
2084
+ {
2085
+ "kind": "input",
2086
+ "name": "Tangent"
2087
+ },
2088
+ {
2089
+ "kind": "input",
2090
+ "name": "Weight",
2091
+ "conditional": true
2092
+ },
2093
+ {
2094
+ "kind": "panel",
2095
+ "name": "Thin Film",
2096
+ "items": [
2097
+ {
2098
+ "kind": "input",
2099
+ "name": "Thin Film Thickness"
2100
+ },
2101
+ {
2102
+ "kind": "input",
2103
+ "name": "Thin Film IOR"
2104
+ }
2105
+ ],
2106
+ "defaultClosed": true
2107
+ }
2108
+ ]
2109
+ },
2110
+ "ShaderNodeBsdfPrincipled": {
2111
+ "customSocketOrder": true,
2112
+ "items": [
2113
+ {
2114
+ "kind": "output",
2115
+ "name": "BSDF"
2116
+ },
2117
+ {
2118
+ "kind": "input",
2119
+ "name": "Base Color"
2120
+ },
2121
+ {
2122
+ "kind": "input",
2123
+ "name": "Metallic"
2124
+ },
2125
+ {
2126
+ "kind": "input",
2127
+ "name": "Roughness"
2128
+ },
2129
+ {
2130
+ "kind": "input",
2131
+ "name": "IOR"
2132
+ },
2133
+ {
2134
+ "kind": "input",
2135
+ "name": "Alpha"
2136
+ },
2137
+ {
2138
+ "kind": "input",
2139
+ "name": "Thin Wall"
2140
+ },
2141
+ {
2142
+ "kind": "input",
2143
+ "name": "Normal"
2144
+ },
2145
+ {
2146
+ "kind": "input",
2147
+ "name": "Weight",
2148
+ "conditional": true
2149
+ },
2150
+ {
2151
+ "kind": "panel",
2152
+ "name": "Diffuse",
2153
+ "items": [
2154
+ {
2155
+ "kind": "input",
2156
+ "name": "Diffuse Roughness"
2157
+ }
2158
+ ],
2159
+ "defaultClosed": true
2160
+ },
2161
+ {
2162
+ "kind": "panel",
2163
+ "name": "Subsurface",
2164
+ "items": [
2165
+ {
2166
+ "kind": "layout"
2167
+ },
2168
+ {
2169
+ "kind": "input",
2170
+ "name": "Subsurface Weight"
2171
+ },
2172
+ {
2173
+ "kind": "input",
2174
+ "name": "Subsurface Radius"
2175
+ },
2176
+ {
2177
+ "kind": "input",
2178
+ "name": "Subsurface Scale"
2179
+ },
2180
+ {
2181
+ "kind": "input",
2182
+ "name": "Subsurface IOR"
2183
+ },
2184
+ {
2185
+ "kind": "input",
2186
+ "name": "Subsurface Anisotropy"
2187
+ }
2188
+ ],
2189
+ "defaultClosed": true
2190
+ },
2191
+ {
2192
+ "kind": "panel",
2193
+ "name": "Specular",
2194
+ "items": [
2195
+ {
2196
+ "kind": "layout"
2197
+ },
2198
+ {
2199
+ "kind": "input",
2200
+ "name": "Specular IOR Level"
2201
+ },
2202
+ {
2203
+ "kind": "input",
2204
+ "name": "Specular Tint"
2205
+ },
2206
+ {
2207
+ "kind": "input",
2208
+ "name": "Anisotropic"
2209
+ },
2210
+ {
2211
+ "kind": "input",
2212
+ "name": "Anisotropic Rotation"
2213
+ },
2214
+ {
2215
+ "kind": "input",
2216
+ "name": "Tangent"
2217
+ }
2218
+ ],
2219
+ "defaultClosed": true
2220
+ },
2221
+ {
2222
+ "kind": "panel",
2223
+ "name": "Transmission",
2224
+ "items": [
2225
+ {
2226
+ "kind": "input",
2227
+ "name": "Transmission Weight"
2228
+ }
2229
+ ],
2230
+ "defaultClosed": true
2231
+ },
2232
+ {
2233
+ "kind": "panel",
2234
+ "name": "Coat",
2235
+ "items": [
2236
+ {
2237
+ "kind": "input",
2238
+ "name": "Coat Weight"
2239
+ },
2240
+ {
2241
+ "kind": "input",
2242
+ "name": "Coat Roughness"
2243
+ },
2244
+ {
2245
+ "kind": "input",
2246
+ "name": "Coat IOR"
2247
+ },
2248
+ {
2249
+ "kind": "input",
2250
+ "name": "Coat Tint"
2251
+ },
2252
+ {
2253
+ "kind": "input",
2254
+ "name": "Coat Normal"
2255
+ }
2256
+ ],
2257
+ "defaultClosed": true
2258
+ },
2259
+ {
2260
+ "kind": "panel",
2261
+ "name": "Sheen",
2262
+ "items": [
2263
+ {
2264
+ "kind": "input",
2265
+ "name": "Sheen Weight"
2266
+ },
2267
+ {
2268
+ "kind": "input",
2269
+ "name": "Sheen Roughness"
2270
+ },
2271
+ {
2272
+ "kind": "input",
2273
+ "name": "Sheen Tint"
2274
+ }
2275
+ ],
2276
+ "defaultClosed": true
2277
+ },
2278
+ {
2279
+ "kind": "panel",
2280
+ "name": "Emission",
2281
+ "items": [
2282
+ {
2283
+ "kind": "input",
2284
+ "name": "Emission Color"
2285
+ },
2286
+ {
2287
+ "kind": "input",
2288
+ "name": "Emission Strength"
2289
+ }
2290
+ ],
2291
+ "defaultClosed": true
2292
+ },
2293
+ {
2294
+ "kind": "panel",
2295
+ "name": "Thin Film",
2296
+ "items": [
2297
+ {
2298
+ "kind": "input",
2299
+ "name": "Thin Film Thickness"
2300
+ },
2301
+ {
2302
+ "kind": "input",
2303
+ "name": "Thin Film IOR"
2304
+ }
2305
+ ],
2306
+ "defaultClosed": true
2307
+ }
2308
+ ]
2309
+ },
2310
+ "ShaderNodeRaycast": {
2311
+ "customSocketOrder": true,
2312
+ "conditional": true,
2313
+ "items": [
2314
+ {
2315
+ "kind": "layout"
2316
+ },
2317
+ {
2318
+ "kind": "output",
2319
+ "name": "Is Hit"
2320
+ },
2321
+ {
2322
+ "kind": "output",
2323
+ "name": "Self Hit"
2324
+ },
2325
+ {
2326
+ "kind": "output",
2327
+ "name": "Hit Distance"
2328
+ },
2329
+ {
2330
+ "kind": "output",
2331
+ "name": "Hit Position"
2332
+ },
2333
+ {
2334
+ "kind": "output",
2335
+ "name": "Hit Normal"
2336
+ },
2337
+ {
2338
+ "kind": "input",
2339
+ "name": "Position"
2340
+ },
2341
+ {
2342
+ "kind": "input",
2343
+ "name": "Direction"
2344
+ },
2345
+ {
2346
+ "kind": "input",
2347
+ "name": "Length"
2348
+ },
2349
+ {
2350
+ "kind": "panel",
2351
+ "name": "Attributes",
2352
+ "items": [
2353
+ {
2354
+ "kind": "input",
2355
+ "name": "",
2356
+ "identifier": "__extend__"
2357
+ },
2358
+ {
2359
+ "kind": "output",
2360
+ "name": "",
2361
+ "identifier": "__extend__",
2362
+ "alignWithPrevious": true
2363
+ }
2364
+ ],
2365
+ "defaultClosed": true
2366
+ }
2367
+ ]
2368
+ },
2369
+ "ShaderNodeVolumeCoefficients": {
2370
+ "customSocketOrder": true,
2371
+ "items": [
2372
+ {
2373
+ "kind": "output",
2374
+ "name": "Volume"
2375
+ },
2376
+ {
2377
+ "kind": "input",
2378
+ "name": "Weight",
2379
+ "conditional": true
2380
+ },
2381
+ {
2382
+ "kind": "panel",
2383
+ "name": "Absorption",
2384
+ "items": [
2385
+ {
2386
+ "kind": "input",
2387
+ "name": "Absorption Coefficients"
2388
+ }
2389
+ ]
2390
+ },
2391
+ {
2392
+ "kind": "panel",
2393
+ "name": "Scatter",
2394
+ "items": [
2395
+ {
2396
+ "kind": "layout"
2397
+ },
2398
+ {
2399
+ "kind": "input",
2400
+ "name": "Scatter Coefficients"
2401
+ },
2402
+ {
2403
+ "kind": "input",
2404
+ "name": "Anisotropy"
2405
+ },
2406
+ {
2407
+ "kind": "input",
2408
+ "name": "IOR"
2409
+ },
2410
+ {
2411
+ "kind": "input",
2412
+ "name": "Backscatter"
2413
+ },
2414
+ {
2415
+ "kind": "input",
2416
+ "name": "Alpha"
2417
+ },
2418
+ {
2419
+ "kind": "input",
2420
+ "name": "Diameter"
2421
+ }
2422
+ ]
2423
+ },
2424
+ {
2425
+ "kind": "panel",
2426
+ "name": "Emission",
2427
+ "items": [
2428
+ {
2429
+ "kind": "input",
2430
+ "name": "Emission Coefficients"
2431
+ }
2432
+ ]
2433
+ }
2434
+ ]
2435
+ }
2436
+ }