shaders 2.2.43 → 2.2.44
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.
- package/dist/core/index.d.ts +0 -2
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +8 -170
- package/dist/core/registry.d.ts +10 -0
- package/dist/core/registry.d.ts.map +1 -0
- package/dist/core/registry.js +166 -0
- package/dist/react/AngularBlur.js +144 -0
- package/dist/react/Ascii.js +144 -0
- package/dist/react/Beam.js +144 -0
- package/dist/react/Blob.js +144 -0
- package/dist/react/Blur.js +144 -0
- package/dist/react/BrightnessContrast.js +144 -0
- package/dist/react/Bulge.js +144 -0
- package/dist/react/CRTScreen.js +144 -0
- package/dist/react/ChannelBlur.js +144 -0
- package/dist/react/Checkerboard.js +144 -0
- package/dist/react/ChromaFlow.js +144 -0
- package/dist/react/ChromaticAberration.js +144 -0
- package/dist/react/Circle.js +144 -0
- package/dist/react/CursorTrail.js +144 -0
- package/dist/react/DiffuseBlur.js +144 -0
- package/dist/react/Dither.js +144 -0
- package/dist/react/DotGrid.js +144 -0
- package/dist/react/Duotone.js +144 -0
- package/dist/react/FilmGrain.js +144 -0
- package/dist/react/FloatingParticles.js +144 -0
- package/dist/react/GlassTiles.js +144 -0
- package/dist/react/Glow.js +144 -0
- package/dist/react/Godrays.js +144 -0
- package/dist/react/Grayscale.js +144 -0
- package/dist/react/Grid.js +144 -0
- package/dist/react/GridDistortion.js +144 -0
- package/dist/react/Group.js +144 -0
- package/dist/react/Halftone.js +144 -0
- package/dist/react/HueShift.js +144 -0
- package/dist/react/ImageTexture.js +144 -0
- package/dist/react/Invert.js +144 -0
- package/dist/react/LinearBlur.js +144 -0
- package/dist/react/LinearGradient.js +144 -0
- package/dist/react/Liquify.js +144 -0
- package/dist/react/Perspective.js +144 -0
- package/dist/react/Pixelate.js +144 -0
- package/dist/react/PolarCoordinates.js +144 -0
- package/dist/react/Posterize.js +144 -0
- package/dist/react/ProgressiveBlur.js +144 -0
- package/dist/react/RadialGradient.js +144 -0
- package/dist/react/RectangularCoordinates.js +144 -0
- package/dist/react/Ripples.js +144 -0
- package/dist/react/Saturation.js +144 -0
- package/dist/react/Shader.js +166 -0
- package/dist/react/Sharpness.js +144 -0
- package/dist/react/Shatter.js +144 -0
- package/dist/react/SimplexNoise.js +144 -0
- package/dist/react/SineWave.js +144 -0
- package/dist/react/SolidColor.js +144 -0
- package/dist/react/Spherize.js +144 -0
- package/dist/react/Spiral.js +144 -0
- package/dist/react/Strands.js +144 -0
- package/dist/react/Stretch.js +144 -0
- package/dist/react/Stripes.js +144 -0
- package/dist/react/Swirl.js +144 -0
- package/dist/react/TiltShift.js +144 -0
- package/dist/react/Tint.js +144 -0
- package/dist/react/Tritone.js +144 -0
- package/dist/react/Twirl.js +144 -0
- package/dist/react/Vibrance.js +144 -0
- package/dist/react/WaveDistortion.js +144 -0
- package/dist/react/WebcamTexture.js +144 -0
- package/dist/react/ZoomBlur.js +144 -0
- package/dist/react/index.js +64 -8784
- package/dist/react/utils/generatePresetCode.d.ts.map +1 -1
- package/dist/react/utils/generatePresetCode.js +392 -1
- package/dist/solid/components/AngularBlur.js +148 -0
- package/dist/solid/components/Ascii.js +148 -0
- package/dist/solid/components/Beam.js +148 -0
- package/dist/solid/components/Blob.js +148 -0
- package/dist/solid/components/Blur.js +148 -0
- package/dist/solid/components/BrightnessContrast.js +148 -0
- package/dist/solid/components/Bulge.js +148 -0
- package/dist/solid/components/CRTScreen.js +148 -0
- package/dist/solid/components/ChannelBlur.js +148 -0
- package/dist/solid/components/Checkerboard.js +148 -0
- package/dist/solid/components/ChromaFlow.js +148 -0
- package/dist/solid/components/ChromaticAberration.js +148 -0
- package/dist/solid/components/Circle.js +148 -0
- package/dist/solid/components/CursorTrail.js +148 -0
- package/dist/solid/components/DiffuseBlur.js +148 -0
- package/dist/solid/components/Dither.js +148 -0
- package/dist/solid/components/DotGrid.js +148 -0
- package/dist/solid/components/Duotone.js +148 -0
- package/dist/solid/components/FilmGrain.js +148 -0
- package/dist/solid/components/FloatingParticles.js +148 -0
- package/dist/solid/components/GlassTiles.js +148 -0
- package/dist/solid/components/Glow.js +148 -0
- package/dist/solid/components/Godrays.js +148 -0
- package/dist/solid/components/Grayscale.js +148 -0
- package/dist/solid/components/Grid.js +148 -0
- package/dist/solid/components/GridDistortion.js +148 -0
- package/dist/solid/components/Group.js +148 -0
- package/dist/solid/components/Halftone.js +148 -0
- package/dist/solid/components/HueShift.js +148 -0
- package/dist/solid/components/ImageTexture.js +148 -0
- package/dist/solid/components/Invert.js +148 -0
- package/dist/solid/components/LinearBlur.js +148 -0
- package/dist/solid/components/LinearGradient.js +148 -0
- package/dist/solid/components/Liquify.js +148 -0
- package/dist/solid/components/Perspective.js +148 -0
- package/dist/solid/components/Pixelate.js +148 -0
- package/dist/solid/components/PolarCoordinates.js +148 -0
- package/dist/solid/components/Posterize.js +148 -0
- package/dist/solid/components/ProgressiveBlur.js +148 -0
- package/dist/solid/components/RadialGradient.js +148 -0
- package/dist/solid/components/RectangularCoordinates.js +148 -0
- package/dist/solid/components/Ripples.js +148 -0
- package/dist/solid/components/Saturation.js +148 -0
- package/dist/solid/components/Sharpness.js +148 -0
- package/dist/solid/components/Shatter.js +148 -0
- package/dist/solid/components/SimplexNoise.js +148 -0
- package/dist/solid/components/SineWave.js +148 -0
- package/dist/solid/components/SolidColor.js +148 -0
- package/dist/solid/components/Spherize.js +148 -0
- package/dist/solid/components/Spiral.js +148 -0
- package/dist/solid/components/Strands.js +148 -0
- package/dist/solid/components/Stretch.js +148 -0
- package/dist/solid/components/Stripes.js +148 -0
- package/dist/solid/components/Swirl.js +148 -0
- package/dist/solid/components/TiltShift.js +148 -0
- package/dist/solid/components/Tint.js +148 -0
- package/dist/solid/components/Tritone.js +148 -0
- package/dist/solid/components/Twirl.js +148 -0
- package/dist/solid/components/Vibrance.js +148 -0
- package/dist/solid/components/WaveDistortion.js +148 -0
- package/dist/solid/components/WebcamTexture.js +148 -0
- package/dist/solid/components/ZoomBlur.js +148 -0
- package/dist/solid/engine/Shader.js +189 -0
- package/dist/solid/index.js +126 -8989
- package/dist/solid/utils/generatePresetCode.d.ts.map +1 -1
- package/dist/solid/utils/generatePresetCode.js +62 -417
- package/dist/svelte/generatePresetCode-CtXcoyI0.js +393 -0
- package/dist/svelte/index.js +1 -1
- package/dist/svelte/utils/generatePresetCode.js +1 -1
- package/dist/vue/AngularBlur.js +3 -0
- package/dist/vue/AngularBlur.vue_vue_type_script_setup_true_lang.js +125 -0
- package/dist/vue/Ascii.js +3 -0
- package/dist/vue/Ascii.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/Beam.js +3 -0
- package/dist/vue/Beam.vue_vue_type_script_setup_true_lang.js +132 -0
- package/dist/vue/Blob.js +3 -0
- package/dist/vue/Blob.vue_vue_type_script_setup_true_lang.js +137 -0
- package/dist/vue/Blur.js +3 -0
- package/dist/vue/Blur.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/BrightnessContrast.js +3 -0
- package/dist/vue/BrightnessContrast.vue_vue_type_script_setup_true_lang.js +125 -0
- package/dist/vue/Bulge.js +3 -0
- package/dist/vue/Bulge.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/CRTScreen.js +3 -0
- package/dist/vue/CRTScreen.vue_vue_type_script_setup_true_lang.js +129 -0
- package/dist/vue/ChannelBlur.js +3 -0
- package/dist/vue/ChannelBlur.vue_vue_type_script_setup_true_lang.js +126 -0
- package/dist/vue/Checkerboard.js +3 -0
- package/dist/vue/Checkerboard.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/ChromaFlow.js +3 -0
- package/dist/vue/ChromaFlow.vue_vue_type_script_setup_true_lang.js +131 -0
- package/dist/vue/ChromaticAberration.js +3 -0
- package/dist/vue/ChromaticAberration.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/Circle.js +3 -0
- package/dist/vue/Circle.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/CursorTrail.js +3 -0
- package/dist/vue/CursorTrail.vue_vue_type_script_setup_true_lang.js +129 -0
- package/dist/vue/DiffuseBlur.js +3 -0
- package/dist/vue/DiffuseBlur.vue_vue_type_script_setup_true_lang.js +125 -0
- package/dist/vue/Dither.js +3 -0
- package/dist/vue/Dither.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/DotGrid.js +3 -0
- package/dist/vue/DotGrid.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/Duotone.js +3 -0
- package/dist/vue/Duotone.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/FilmGrain.js +3 -0
- package/dist/vue/FilmGrain.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/FloatingParticles.js +3 -0
- package/dist/vue/FloatingParticles.vue_vue_type_script_setup_true_lang.js +134 -0
- package/dist/vue/GlassTiles.js +3 -0
- package/dist/vue/GlassTiles.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/Glow.js +3 -0
- package/dist/vue/Glow.vue_vue_type_script_setup_true_lang.js +126 -0
- package/dist/vue/Godrays.js +3 -0
- package/dist/vue/Godrays.vue_vue_type_script_setup_true_lang.js +130 -0
- package/dist/vue/Grayscale.js +3 -0
- package/dist/vue/Grayscale.vue_vue_type_script_setup_true_lang.js +123 -0
- package/dist/vue/Grid.js +3 -0
- package/dist/vue/Grid.vue_vue_type_script_setup_true_lang.js +126 -0
- package/dist/vue/GridDistortion.js +3 -0
- package/dist/vue/GridDistortion.vue_vue_type_script_setup_true_lang.js +129 -0
- package/dist/vue/Group.js +3 -0
- package/dist/vue/Group.vue_vue_type_script_setup_true_lang.js +123 -0
- package/dist/vue/Halftone.js +3 -0
- package/dist/vue/Halftone.vue_vue_type_script_setup_true_lang.js +126 -0
- package/dist/vue/HueShift.js +3 -0
- package/dist/vue/HueShift.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/ImageTexture.js +3 -0
- package/dist/vue/ImageTexture.vue_vue_type_script_setup_true_lang.js +125 -0
- package/dist/vue/Invert.js +3 -0
- package/dist/vue/Invert.vue_vue_type_script_setup_true_lang.js +123 -0
- package/dist/vue/LinearBlur.js +3 -0
- package/dist/vue/LinearBlur.vue_vue_type_script_setup_true_lang.js +125 -0
- package/dist/vue/LinearGradient.js +3 -0
- package/dist/vue/LinearGradient.vue_vue_type_script_setup_true_lang.js +130 -0
- package/dist/vue/Liquify.js +3 -0
- package/dist/vue/Liquify.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/Perspective.js +3 -0
- package/dist/vue/Perspective.vue_vue_type_script_setup_true_lang.js +130 -0
- package/dist/vue/Pixelate.js +3 -0
- package/dist/vue/Pixelate.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/PolarCoordinates.js +3 -0
- package/dist/vue/PolarCoordinates.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/Posterize.js +3 -0
- package/dist/vue/Posterize.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/ProgressiveBlur.js +3 -0
- package/dist/vue/ProgressiveBlur.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/RadialGradient.js +3 -0
- package/dist/vue/RadialGradient.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/RectangularCoordinates.js +3 -0
- package/dist/vue/RectangularCoordinates.vue_vue_type_script_setup_true_lang.js +127 -0
- package/dist/vue/Ripples.js +3 -0
- package/dist/vue/Ripples.vue_vue_type_script_setup_true_lang.js +131 -0
- package/dist/vue/Saturation.js +3 -0
- package/dist/vue/Saturation.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/Shader.js +3 -0
- package/dist/vue/Shader.vue_vue_type_script_setup_true_lang.js +153 -0
- package/dist/vue/Sharpness.js +3 -0
- package/dist/vue/Sharpness.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/Shatter.js +3 -0
- package/dist/vue/Shatter.vue_vue_type_script_setup_true_lang.js +132 -0
- package/dist/vue/SimplexNoise.js +3 -0
- package/dist/vue/SimplexNoise.vue_vue_type_script_setup_true_lang.js +130 -0
- package/dist/vue/SineWave.js +3 -0
- package/dist/vue/SineWave.vue_vue_type_script_setup_true_lang.js +131 -0
- package/dist/vue/SolidColor.js +3 -0
- package/dist/vue/SolidColor.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/Spherize.js +3 -0
- package/dist/vue/Spherize.vue_vue_type_script_setup_true_lang.js +130 -0
- package/dist/vue/Spiral.js +3 -0
- package/dist/vue/Spiral.vue_vue_type_script_setup_true_lang.js +132 -0
- package/dist/vue/Strands.js +3 -0
- package/dist/vue/Strands.vue_vue_type_script_setup_true_lang.js +132 -0
- package/dist/vue/Stretch.js +3 -0
- package/dist/vue/Stretch.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/Stripes.js +3 -0
- package/dist/vue/Stripes.vue_vue_type_script_setup_true_lang.js +132 -0
- package/dist/vue/Swirl.js +3 -0
- package/dist/vue/Swirl.vue_vue_type_script_setup_true_lang.js +129 -0
- package/dist/vue/TiltShift.js +3 -0
- package/dist/vue/TiltShift.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/Tint.js +3 -0
- package/dist/vue/Tint.vue_vue_type_script_setup_true_lang.js +126 -0
- package/dist/vue/Tritone.js +3 -0
- package/dist/vue/Tritone.vue_vue_type_script_setup_true_lang.js +128 -0
- package/dist/vue/Twirl.js +3 -0
- package/dist/vue/Twirl.vue_vue_type_script_setup_true_lang.js +126 -0
- package/dist/vue/Vibrance.js +3 -0
- package/dist/vue/Vibrance.vue_vue_type_script_setup_true_lang.js +124 -0
- package/dist/vue/WaveDistortion.js +3 -0
- package/dist/vue/WaveDistortion.vue_vue_type_script_setup_true_lang.js +129 -0
- package/dist/vue/WebcamTexture.js +3 -0
- package/dist/vue/WebcamTexture.vue_vue_type_script_setup_true_lang.js +125 -0
- package/dist/vue/ZoomBlur.js +3 -0
- package/dist/vue/ZoomBlur.vue_vue_type_script_setup_true_lang.js +125 -0
- package/dist/vue/index.js +64 -7870
- package/dist/vue/utils/generatePresetCode.d.ts.map +1 -1
- package/dist/vue/utils/generatePresetCode.js +391 -1
- package/package.json +1 -1
- package/dist/react/generatePresetCode-D0yiVxb4.js +0 -748
- package/dist/svelte/generatePresetCode-DUGaV_ym.js +0 -748
- package/dist/vue/generatePresetCode-CShQ8TLw.js +0 -747
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generatePresetCode.d.ts","sourceRoot":"","sources":["../../src/utils/generatePresetCode.ts"],"names":[],"mappings":"AAAA,UAAU,eAAe;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC3B,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAA;CAC7B;AAED,UAAU,YAAY;IACpB,UAAU,EAAE,eAAe,EAAE,CAAA;CAC9B;
|
|
1
|
+
{"version":3,"file":"generatePresetCode.d.ts","sourceRoot":"","sources":["../../src/utils/generatePresetCode.ts"],"names":[],"mappings":"AAAA,UAAU,eAAe;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC3B,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAA;CAC7B;AAED,UAAU,YAAY;IACpB,UAAU,EAAE,eAAe,EAAE,CAAA;CAC9B;AAuXD,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,YAAY,GAAG,MAAM,CAyC/D;AAGD,eAAO,MAAM,mBAAmB,UAgE/B,CAAA"}
|
|
@@ -17,230 +17,95 @@ function toObjectLiteral(obj) {
|
|
|
17
17
|
const shaderMetadata = {
|
|
18
18
|
"AngularBlur": {
|
|
19
19
|
"opacity": 1,
|
|
20
|
-
"blendMode": "normal"
|
|
21
|
-
"intensity": 20,
|
|
22
|
-
"center": {
|
|
23
|
-
"x": 0.5,
|
|
24
|
-
"y": 0.5
|
|
25
|
-
}
|
|
20
|
+
"blendMode": "normal"
|
|
26
21
|
},
|
|
27
22
|
"Ascii": {
|
|
28
23
|
"opacity": 1,
|
|
29
|
-
"blendMode": "normal"
|
|
30
|
-
"characters": "@%#*+=-:.",
|
|
31
|
-
"cellSize": 30,
|
|
32
|
-
"fontFamily": "JetBrains Mono",
|
|
33
|
-
"spacing": 1
|
|
24
|
+
"blendMode": "normal"
|
|
34
25
|
},
|
|
35
26
|
"Beam": {
|
|
36
27
|
"opacity": 1,
|
|
37
|
-
"blendMode": "normal"
|
|
38
|
-
"startPosition": {
|
|
39
|
-
"x": 0.2,
|
|
40
|
-
"y": 0.5
|
|
41
|
-
},
|
|
42
|
-
"endPosition": {
|
|
43
|
-
"x": 0.8,
|
|
44
|
-
"y": 0.5
|
|
45
|
-
},
|
|
46
|
-
"startThickness": 0.2,
|
|
47
|
-
"endThickness": 0.2,
|
|
48
|
-
"startSoftness": 0.5,
|
|
49
|
-
"endSoftness": 0.5,
|
|
50
|
-
"insideColor": "#FF0000",
|
|
51
|
-
"outsideColor": "#0000FF",
|
|
52
|
-
"colorSpace": "linear"
|
|
28
|
+
"blendMode": "normal"
|
|
53
29
|
},
|
|
54
30
|
"Blob": {
|
|
55
31
|
"opacity": 1,
|
|
56
|
-
"blendMode": "normal"
|
|
57
|
-
"colorA": "#ff6b35",
|
|
58
|
-
"colorB": "#e91e63",
|
|
59
|
-
"size": 0.5,
|
|
60
|
-
"deformation": 0.5,
|
|
61
|
-
"softness": 0.5,
|
|
62
|
-
"highlightIntensity": 0.5,
|
|
63
|
-
"highlightX": 0.3,
|
|
64
|
-
"highlightY": -0.3,
|
|
65
|
-
"highlightZ": 0.4,
|
|
66
|
-
"highlightColor": "#ffe11a",
|
|
67
|
-
"speed": 0.5,
|
|
68
|
-
"seed": 1,
|
|
69
|
-
"center": {
|
|
70
|
-
"x": 0.5,
|
|
71
|
-
"y": 0.5
|
|
72
|
-
},
|
|
73
|
-
"colorSpace": "linear"
|
|
32
|
+
"blendMode": "normal"
|
|
74
33
|
},
|
|
75
34
|
"Blur": {
|
|
76
35
|
"opacity": 1,
|
|
77
|
-
"blendMode": "normal"
|
|
78
|
-
"intensity": 50
|
|
36
|
+
"blendMode": "normal"
|
|
79
37
|
},
|
|
80
38
|
"BrightnessContrast": {
|
|
81
39
|
"opacity": 1,
|
|
82
|
-
"blendMode": "normal"
|
|
83
|
-
"brightness": 0,
|
|
84
|
-
"contrast": 0
|
|
40
|
+
"blendMode": "normal"
|
|
85
41
|
},
|
|
86
42
|
"Bulge": {
|
|
87
43
|
"opacity": 1,
|
|
88
|
-
"blendMode": "normal"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
"strength": 1,
|
|
94
|
-
"radius": 1,
|
|
95
|
-
"falloff": 0.5,
|
|
96
|
-
"edges": "stretch"
|
|
44
|
+
"blendMode": "normal"
|
|
45
|
+
},
|
|
46
|
+
"CRTScreen": {
|
|
47
|
+
"opacity": 1,
|
|
48
|
+
"blendMode": "normal"
|
|
97
49
|
},
|
|
98
50
|
"ChannelBlur": {
|
|
99
51
|
"opacity": 1,
|
|
100
|
-
"blendMode": "normal"
|
|
101
|
-
"redIntensity": 0,
|
|
102
|
-
"greenIntensity": 20,
|
|
103
|
-
"blueIntensity": 40
|
|
52
|
+
"blendMode": "normal"
|
|
104
53
|
},
|
|
105
54
|
"Checkerboard": {
|
|
106
55
|
"opacity": 1,
|
|
107
|
-
"blendMode": "normal"
|
|
108
|
-
"colorA": "#cccccc",
|
|
109
|
-
"colorB": "#999999",
|
|
110
|
-
"cells": 8,
|
|
111
|
-
"softness": 0,
|
|
112
|
-
"colorSpace": "linear"
|
|
56
|
+
"blendMode": "normal"
|
|
113
57
|
},
|
|
114
58
|
"ChromaFlow": {
|
|
115
59
|
"opacity": 1,
|
|
116
|
-
"blendMode": "normal"
|
|
117
|
-
"baseColor": "#0066ff",
|
|
118
|
-
"upColor": "#00ff00",
|
|
119
|
-
"downColor": "#ff0000",
|
|
120
|
-
"leftColor": "#0000ff",
|
|
121
|
-
"rightColor": "#ffff00",
|
|
122
|
-
"intensity": 1,
|
|
123
|
-
"radius": 2,
|
|
124
|
-
"momentum": 30
|
|
60
|
+
"blendMode": "normal"
|
|
125
61
|
},
|
|
126
62
|
"ChromaticAberration": {
|
|
127
63
|
"opacity": 1,
|
|
128
|
-
"blendMode": "normal"
|
|
129
|
-
"strength": 0.2,
|
|
130
|
-
"angle": 0,
|
|
131
|
-
"redOffset": -1,
|
|
132
|
-
"greenOffset": 0,
|
|
133
|
-
"blueOffset": 1
|
|
64
|
+
"blendMode": "normal"
|
|
134
65
|
},
|
|
135
66
|
"Circle": {
|
|
136
67
|
"opacity": 1,
|
|
137
|
-
"blendMode": "normal"
|
|
138
|
-
"color": "#ffffff",
|
|
139
|
-
"radius": 1,
|
|
140
|
-
"softness": 0,
|
|
141
|
-
"center": {
|
|
142
|
-
"x": 0.5,
|
|
143
|
-
"y": 0.5
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"CRTScreen": {
|
|
147
|
-
"opacity": 1,
|
|
148
|
-
"blendMode": "normal",
|
|
149
|
-
"pixelSize": 128,
|
|
150
|
-
"colorShift": 1,
|
|
151
|
-
"scanlineIntensity": 0.3,
|
|
152
|
-
"scanlineFrequency": 200,
|
|
153
|
-
"brightness": 1.1,
|
|
154
|
-
"contrast": 1.2
|
|
68
|
+
"blendMode": "normal"
|
|
155
69
|
},
|
|
156
70
|
"CursorTrail": {
|
|
157
71
|
"opacity": 1,
|
|
158
|
-
"blendMode": "normal"
|
|
159
|
-
"colorA": "#00aaff",
|
|
160
|
-
"colorB": "#ff00aa",
|
|
161
|
-
"radius": 0.5,
|
|
162
|
-
"length": 0.5,
|
|
163
|
-
"shrink": 1,
|
|
164
|
-
"colorSpace": "linear"
|
|
72
|
+
"blendMode": "normal"
|
|
165
73
|
},
|
|
166
74
|
"DiffuseBlur": {
|
|
167
75
|
"opacity": 1,
|
|
168
|
-
"blendMode": "normal"
|
|
169
|
-
"intensity": 30,
|
|
170
|
-
"edges": "stretch"
|
|
76
|
+
"blendMode": "normal"
|
|
171
77
|
},
|
|
172
78
|
"Dither": {
|
|
173
79
|
"opacity": 1,
|
|
174
|
-
"blendMode": "normal"
|
|
175
|
-
"pixelSize": 4,
|
|
176
|
-
"threshold": 0.5,
|
|
177
|
-
"colorA": "transparent",
|
|
178
|
-
"colorB": "#ffffff"
|
|
80
|
+
"blendMode": "normal"
|
|
179
81
|
},
|
|
180
82
|
"DotGrid": {
|
|
181
83
|
"opacity": 1,
|
|
182
|
-
"blendMode": "normal"
|
|
183
|
-
"color": "#ffffff",
|
|
184
|
-
"density": 100,
|
|
185
|
-
"dotSize": 0.3,
|
|
186
|
-
"twinkle": 0
|
|
84
|
+
"blendMode": "normal"
|
|
187
85
|
},
|
|
188
86
|
"Duotone": {
|
|
189
87
|
"opacity": 1,
|
|
190
|
-
"blendMode": "normal"
|
|
191
|
-
"colorA": "#ff0000",
|
|
192
|
-
"colorB": "#023af4",
|
|
193
|
-
"blend": 0.5,
|
|
194
|
-
"colorSpace": "linear"
|
|
88
|
+
"blendMode": "normal"
|
|
195
89
|
},
|
|
196
90
|
"FilmGrain": {
|
|
197
91
|
"opacity": 1,
|
|
198
|
-
"blendMode": "normal"
|
|
199
|
-
"strength": 0.5
|
|
92
|
+
"blendMode": "normal"
|
|
200
93
|
},
|
|
201
94
|
"FloatingParticles": {
|
|
202
95
|
"opacity": 1,
|
|
203
|
-
"blendMode": "normal"
|
|
204
|
-
"randomness": 0.25,
|
|
205
|
-
"speed": 0.25,
|
|
206
|
-
"angle": 90,
|
|
207
|
-
"particleSize": 1,
|
|
208
|
-
"particleSoftness": 0,
|
|
209
|
-
"twinkle": 0.5,
|
|
210
|
-
"count": 5,
|
|
211
|
-
"particleColor": "#ffffff",
|
|
212
|
-
"speedVariance": 0.3,
|
|
213
|
-
"angleVariance": 30,
|
|
214
|
-
"particleDensity": 3
|
|
96
|
+
"blendMode": "normal"
|
|
215
97
|
},
|
|
216
98
|
"GlassTiles": {
|
|
217
99
|
"opacity": 1,
|
|
218
|
-
"blendMode": "normal"
|
|
219
|
-
"intensity": 2,
|
|
220
|
-
"tileCount": 20,
|
|
221
|
-
"rotation": 0,
|
|
222
|
-
"roundness": 0
|
|
100
|
+
"blendMode": "normal"
|
|
223
101
|
},
|
|
224
102
|
"Glow": {
|
|
225
103
|
"opacity": 1,
|
|
226
|
-
"blendMode": "normal"
|
|
227
|
-
"intensity": 1,
|
|
228
|
-
"threshold": 0.5,
|
|
229
|
-
"size": 10
|
|
104
|
+
"blendMode": "normal"
|
|
230
105
|
},
|
|
231
106
|
"Godrays": {
|
|
232
107
|
"opacity": 1,
|
|
233
|
-
"blendMode": "normal"
|
|
234
|
-
"center": {
|
|
235
|
-
"x": 0,
|
|
236
|
-
"y": 0
|
|
237
|
-
},
|
|
238
|
-
"density": 0.3,
|
|
239
|
-
"intensity": 0.8,
|
|
240
|
-
"spotty": 1,
|
|
241
|
-
"speed": 0.5,
|
|
242
|
-
"rayColor": "#4283fb",
|
|
243
|
-
"backgroundColor": "transparent"
|
|
108
|
+
"blendMode": "normal"
|
|
244
109
|
},
|
|
245
110
|
"Grayscale": {
|
|
246
111
|
"opacity": 1,
|
|
@@ -248,20 +113,11 @@ const shaderMetadata = {
|
|
|
248
113
|
},
|
|
249
114
|
"Grid": {
|
|
250
115
|
"opacity": 1,
|
|
251
|
-
"blendMode": "normal"
|
|
252
|
-
"color": "#ffffff",
|
|
253
|
-
"cells": 10,
|
|
254
|
-
"thickness": 1
|
|
116
|
+
"blendMode": "normal"
|
|
255
117
|
},
|
|
256
118
|
"GridDistortion": {
|
|
257
119
|
"opacity": 1,
|
|
258
|
-
"blendMode": "normal"
|
|
259
|
-
"intensity": 1,
|
|
260
|
-
"swirl": 0,
|
|
261
|
-
"decay": 3,
|
|
262
|
-
"radius": 1,
|
|
263
|
-
"gridSize": 20,
|
|
264
|
-
"edges": "stretch"
|
|
120
|
+
"blendMode": "normal"
|
|
265
121
|
},
|
|
266
122
|
"Group": {
|
|
267
123
|
"opacity": 1,
|
|
@@ -269,21 +125,15 @@ const shaderMetadata = {
|
|
|
269
125
|
},
|
|
270
126
|
"Halftone": {
|
|
271
127
|
"opacity": 1,
|
|
272
|
-
"blendMode": "normal"
|
|
273
|
-
"frequency": 100,
|
|
274
|
-
"angle": 45,
|
|
275
|
-
"smoothness": 0.1
|
|
128
|
+
"blendMode": "normal"
|
|
276
129
|
},
|
|
277
130
|
"HueShift": {
|
|
278
131
|
"opacity": 1,
|
|
279
|
-
"blendMode": "normal"
|
|
280
|
-
"shift": 0
|
|
132
|
+
"blendMode": "normal"
|
|
281
133
|
},
|
|
282
134
|
"ImageTexture": {
|
|
283
135
|
"opacity": 1,
|
|
284
|
-
"blendMode": "normal"
|
|
285
|
-
"url": "https://shaders.com/sample.jpg",
|
|
286
|
-
"objectFit": "cover"
|
|
136
|
+
"blendMode": "normal"
|
|
287
137
|
},
|
|
288
138
|
"Invert": {
|
|
289
139
|
"opacity": 1,
|
|
@@ -291,332 +141,127 @@ const shaderMetadata = {
|
|
|
291
141
|
},
|
|
292
142
|
"LinearBlur": {
|
|
293
143
|
"opacity": 1,
|
|
294
|
-
"blendMode": "normal"
|
|
295
|
-
"intensity": 30,
|
|
296
|
-
"angle": 0
|
|
144
|
+
"blendMode": "normal"
|
|
297
145
|
},
|
|
298
146
|
"LinearGradient": {
|
|
299
147
|
"opacity": 1,
|
|
300
|
-
"blendMode": "normal"
|
|
301
|
-
"colorA": "#1aff00",
|
|
302
|
-
"colorB": "#0000ff",
|
|
303
|
-
"start": {
|
|
304
|
-
"x": 0,
|
|
305
|
-
"y": 0.5
|
|
306
|
-
},
|
|
307
|
-
"end": {
|
|
308
|
-
"x": 1,
|
|
309
|
-
"y": 0.5
|
|
310
|
-
},
|
|
311
|
-
"angle": 0,
|
|
312
|
-
"edges": "stretch",
|
|
313
|
-
"colorSpace": "linear"
|
|
148
|
+
"blendMode": "normal"
|
|
314
149
|
},
|
|
315
150
|
"Liquify": {
|
|
316
151
|
"opacity": 1,
|
|
317
|
-
"blendMode": "normal"
|
|
318
|
-
"intensity": 1,
|
|
319
|
-
"swirl": 0,
|
|
320
|
-
"decay": 3,
|
|
321
|
-
"radius": 1,
|
|
322
|
-
"edges": "stretch"
|
|
152
|
+
"blendMode": "normal"
|
|
323
153
|
},
|
|
324
154
|
"Perspective": {
|
|
325
155
|
"opacity": 1,
|
|
326
|
-
"blendMode": "normal"
|
|
327
|
-
"center": {
|
|
328
|
-
"x": 0.5,
|
|
329
|
-
"y": 0.5
|
|
330
|
-
},
|
|
331
|
-
"pan": 0,
|
|
332
|
-
"tilt": 0,
|
|
333
|
-
"fov": 60,
|
|
334
|
-
"zoom": 1,
|
|
335
|
-
"offset": {
|
|
336
|
-
"x": 0.5,
|
|
337
|
-
"y": 0.5
|
|
338
|
-
},
|
|
339
|
-
"edges": "transparent"
|
|
156
|
+
"blendMode": "normal"
|
|
340
157
|
},
|
|
341
158
|
"Pixelate": {
|
|
342
159
|
"opacity": 1,
|
|
343
|
-
"blendMode": "normal"
|
|
344
|
-
"scale": 50
|
|
160
|
+
"blendMode": "normal"
|
|
345
161
|
},
|
|
346
162
|
"PolarCoordinates": {
|
|
347
163
|
"opacity": 1,
|
|
348
|
-
"blendMode": "normal"
|
|
349
|
-
"center": {
|
|
350
|
-
"x": 0.5,
|
|
351
|
-
"y": 0.5
|
|
352
|
-
},
|
|
353
|
-
"wrap": 1,
|
|
354
|
-
"radius": 1,
|
|
355
|
-
"intensity": 1,
|
|
356
|
-
"edges": "transparent"
|
|
164
|
+
"blendMode": "normal"
|
|
357
165
|
},
|
|
358
166
|
"Posterize": {
|
|
359
167
|
"opacity": 1,
|
|
360
|
-
"blendMode": "normal"
|
|
361
|
-
"intensity": 5
|
|
168
|
+
"blendMode": "normal"
|
|
362
169
|
},
|
|
363
170
|
"ProgressiveBlur": {
|
|
364
171
|
"opacity": 1,
|
|
365
|
-
"blendMode": "normal"
|
|
366
|
-
"intensity": 50,
|
|
367
|
-
"angle": 0,
|
|
368
|
-
"center": {
|
|
369
|
-
"x": 0,
|
|
370
|
-
"y": 0.5
|
|
371
|
-
},
|
|
372
|
-
"falloff": 1
|
|
172
|
+
"blendMode": "normal"
|
|
373
173
|
},
|
|
374
174
|
"RadialGradient": {
|
|
375
175
|
"opacity": 1,
|
|
376
|
-
"blendMode": "normal"
|
|
377
|
-
"colorA": "#ff0000",
|
|
378
|
-
"colorB": "#0000ff",
|
|
379
|
-
"center": {
|
|
380
|
-
"x": 0.5,
|
|
381
|
-
"y": 0.5
|
|
382
|
-
},
|
|
383
|
-
"radius": 1,
|
|
384
|
-
"colorSpace": "linear"
|
|
176
|
+
"blendMode": "normal"
|
|
385
177
|
},
|
|
386
178
|
"RectangularCoordinates": {
|
|
387
179
|
"opacity": 1,
|
|
388
|
-
"blendMode": "normal"
|
|
389
|
-
"center": {
|
|
390
|
-
"x": 0.5,
|
|
391
|
-
"y": 0.5
|
|
392
|
-
},
|
|
393
|
-
"scale": 1,
|
|
394
|
-
"intensity": 1,
|
|
395
|
-
"edges": "transparent"
|
|
180
|
+
"blendMode": "normal"
|
|
396
181
|
},
|
|
397
182
|
"Ripples": {
|
|
398
183
|
"opacity": 1,
|
|
399
|
-
"blendMode": "normal"
|
|
400
|
-
"center": {
|
|
401
|
-
"x": 0.5,
|
|
402
|
-
"y": 0.5
|
|
403
|
-
},
|
|
404
|
-
"colorA": "#ffffff",
|
|
405
|
-
"colorB": "#000000",
|
|
406
|
-
"speed": 1,
|
|
407
|
-
"frequency": 20,
|
|
408
|
-
"softness": 0,
|
|
409
|
-
"thickness": 0.5,
|
|
410
|
-
"phase": 0
|
|
184
|
+
"blendMode": "normal"
|
|
411
185
|
},
|
|
412
186
|
"Saturation": {
|
|
413
187
|
"opacity": 1,
|
|
414
|
-
"blendMode": "normal"
|
|
415
|
-
"intensity": 1
|
|
188
|
+
"blendMode": "normal"
|
|
416
189
|
},
|
|
417
190
|
"Sharpness": {
|
|
418
191
|
"opacity": 1,
|
|
419
|
-
"blendMode": "normal"
|
|
420
|
-
"sharpness": 0
|
|
192
|
+
"blendMode": "normal"
|
|
421
193
|
},
|
|
422
194
|
"Shatter": {
|
|
423
195
|
"opacity": 1,
|
|
424
|
-
"blendMode": "normal"
|
|
425
|
-
"crackWidth": 1,
|
|
426
|
-
"intensity": 4,
|
|
427
|
-
"radius": 0.4,
|
|
428
|
-
"decay": 1,
|
|
429
|
-
"seed": 2,
|
|
430
|
-
"chromaticSplit": 1,
|
|
431
|
-
"refractionStrength": 5,
|
|
432
|
-
"shardLighting": 0.1,
|
|
433
|
-
"edges": "mirror"
|
|
196
|
+
"blendMode": "normal"
|
|
434
197
|
},
|
|
435
198
|
"SimplexNoise": {
|
|
436
199
|
"opacity": 1,
|
|
437
|
-
"blendMode": "normal"
|
|
438
|
-
"colorA": "#ffffff",
|
|
439
|
-
"colorB": "transparent",
|
|
440
|
-
"scale": 2,
|
|
441
|
-
"balance": 0,
|
|
442
|
-
"contrast": 0,
|
|
443
|
-
"seed": 0,
|
|
444
|
-
"speed": 1
|
|
200
|
+
"blendMode": "normal"
|
|
445
201
|
},
|
|
446
202
|
"SineWave": {
|
|
447
203
|
"opacity": 1,
|
|
448
|
-
"blendMode": "normal"
|
|
449
|
-
"color": "#ffffff",
|
|
450
|
-
"amplitude": 0.15,
|
|
451
|
-
"frequency": 1,
|
|
452
|
-
"speed": 1,
|
|
453
|
-
"angle": 0,
|
|
454
|
-
"position": {
|
|
455
|
-
"x": 0.5,
|
|
456
|
-
"y": 0.5
|
|
457
|
-
},
|
|
458
|
-
"thickness": 0.2,
|
|
459
|
-
"softness": 0.4
|
|
204
|
+
"blendMode": "normal"
|
|
460
205
|
},
|
|
461
206
|
"SolidColor": {
|
|
462
207
|
"opacity": 1,
|
|
463
|
-
"blendMode": "normal"
|
|
464
|
-
"color": "#5b18ca"
|
|
208
|
+
"blendMode": "normal"
|
|
465
209
|
},
|
|
466
210
|
"Spherize": {
|
|
467
211
|
"opacity": 1,
|
|
468
|
-
"blendMode": "normal"
|
|
469
|
-
"radius": 1,
|
|
470
|
-
"depth": 1,
|
|
471
|
-
"center": {
|
|
472
|
-
"x": 0.5,
|
|
473
|
-
"y": 0.5
|
|
474
|
-
},
|
|
475
|
-
"lightPosition": {
|
|
476
|
-
"x": 0.3,
|
|
477
|
-
"y": 0.3
|
|
478
|
-
},
|
|
479
|
-
"lightIntensity": 0.5,
|
|
480
|
-
"lightSoftness": 0.5,
|
|
481
|
-
"lightColor": "#ffffff"
|
|
212
|
+
"blendMode": "normal"
|
|
482
213
|
},
|
|
483
214
|
"Spiral": {
|
|
484
215
|
"opacity": 1,
|
|
485
|
-
"blendMode": "normal"
|
|
486
|
-
"colorA": "#000000",
|
|
487
|
-
"colorB": "#ffffff",
|
|
488
|
-
"strokeWidth": 0.5,
|
|
489
|
-
"strokeFalloff": 0,
|
|
490
|
-
"softness": 0,
|
|
491
|
-
"speed": 1,
|
|
492
|
-
"center": {
|
|
493
|
-
"x": 0.5,
|
|
494
|
-
"y": 0.5
|
|
495
|
-
},
|
|
496
|
-
"scale": 1,
|
|
497
|
-
"colorSpace": "linear"
|
|
216
|
+
"blendMode": "normal"
|
|
498
217
|
},
|
|
499
218
|
"Strands": {
|
|
500
219
|
"opacity": 1,
|
|
501
|
-
"blendMode": "normal"
|
|
502
|
-
"speed": 0.5,
|
|
503
|
-
"amplitude": 1,
|
|
504
|
-
"frequency": 1,
|
|
505
|
-
"lineCount": 12,
|
|
506
|
-
"lineWidth": 0.1,
|
|
507
|
-
"waveColor": "#f1c907",
|
|
508
|
-
"pinEdges": true,
|
|
509
|
-
"start": {
|
|
510
|
-
"x": 0,
|
|
511
|
-
"y": 0.5
|
|
512
|
-
},
|
|
513
|
-
"end": {
|
|
514
|
-
"x": 1,
|
|
515
|
-
"y": 0.5
|
|
516
|
-
}
|
|
220
|
+
"blendMode": "normal"
|
|
517
221
|
},
|
|
518
222
|
"Stretch": {
|
|
519
223
|
"opacity": 1,
|
|
520
|
-
"blendMode": "normal"
|
|
521
|
-
"center": {
|
|
522
|
-
"x": 0.5,
|
|
523
|
-
"y": 0.5
|
|
524
|
-
},
|
|
525
|
-
"strength": 1,
|
|
526
|
-
"angle": 0,
|
|
527
|
-
"falloff": 0,
|
|
528
|
-
"edges": "stretch"
|
|
224
|
+
"blendMode": "normal"
|
|
529
225
|
},
|
|
530
226
|
"Stripes": {
|
|
531
227
|
"opacity": 1,
|
|
532
|
-
"blendMode": "normal"
|
|
533
|
-
"colorA": "#000000",
|
|
534
|
-
"colorB": "#ffffff",
|
|
535
|
-
"angle": 45,
|
|
536
|
-
"density": 5,
|
|
537
|
-
"balance": 0.5,
|
|
538
|
-
"softness": 0,
|
|
539
|
-
"speed": 0.2,
|
|
540
|
-
"offset": 0,
|
|
541
|
-
"colorSpace": "linear"
|
|
228
|
+
"blendMode": "normal"
|
|
542
229
|
},
|
|
543
230
|
"Swirl": {
|
|
544
231
|
"opacity": 1,
|
|
545
|
-
"blendMode": "normal"
|
|
546
|
-
"colorA": "#1275d8",
|
|
547
|
-
"colorB": "#e19136",
|
|
548
|
-
"speed": 1,
|
|
549
|
-
"detail": 1,
|
|
550
|
-
"blend": 50,
|
|
551
|
-
"colorSpace": "linear"
|
|
232
|
+
"blendMode": "normal"
|
|
552
233
|
},
|
|
553
234
|
"TiltShift": {
|
|
554
235
|
"opacity": 1,
|
|
555
|
-
"blendMode": "normal"
|
|
556
|
-
"intensity": 50,
|
|
557
|
-
"width": 0.3,
|
|
558
|
-
"falloff": 0.3,
|
|
559
|
-
"angle": 0,
|
|
560
|
-
"center": {
|
|
561
|
-
"x": 0.5,
|
|
562
|
-
"y": 0.5
|
|
563
|
-
}
|
|
236
|
+
"blendMode": "normal"
|
|
564
237
|
},
|
|
565
238
|
"Tint": {
|
|
566
239
|
"opacity": 1,
|
|
567
|
-
"blendMode": "normal"
|
|
568
|
-
"color": "#ff8800",
|
|
569
|
-
"amount": 0.5,
|
|
570
|
-
"preserveLuminosity": true
|
|
240
|
+
"blendMode": "normal"
|
|
571
241
|
},
|
|
572
242
|
"Tritone": {
|
|
573
243
|
"opacity": 1,
|
|
574
|
-
"blendMode": "normal"
|
|
575
|
-
"colorA": "#ce1bea",
|
|
576
|
-
"colorB": "#2fff00",
|
|
577
|
-
"colorC": "#ffff00",
|
|
578
|
-
"blendMid": 0.5,
|
|
579
|
-
"colorSpace": "linear"
|
|
244
|
+
"blendMode": "normal"
|
|
580
245
|
},
|
|
581
246
|
"Twirl": {
|
|
582
247
|
"opacity": 1,
|
|
583
|
-
"blendMode": "normal"
|
|
584
|
-
"center": {
|
|
585
|
-
"x": 0.5,
|
|
586
|
-
"y": 0.5
|
|
587
|
-
},
|
|
588
|
-
"intensity": 1,
|
|
589
|
-
"edges": "stretch"
|
|
248
|
+
"blendMode": "normal"
|
|
590
249
|
},
|
|
591
250
|
"Vibrance": {
|
|
592
251
|
"opacity": 1,
|
|
593
|
-
"blendMode": "normal"
|
|
594
|
-
"intensity": 0
|
|
252
|
+
"blendMode": "normal"
|
|
595
253
|
},
|
|
596
254
|
"WaveDistortion": {
|
|
597
255
|
"opacity": 1,
|
|
598
|
-
"blendMode": "normal"
|
|
599
|
-
"strength": 0.3,
|
|
600
|
-
"frequency": 1,
|
|
601
|
-
"speed": 1,
|
|
602
|
-
"angle": 0,
|
|
603
|
-
"waveType": "sine",
|
|
604
|
-
"edges": "stretch"
|
|
256
|
+
"blendMode": "normal"
|
|
605
257
|
},
|
|
606
258
|
"WebcamTexture": {
|
|
607
259
|
"opacity": 1,
|
|
608
|
-
"blendMode": "normal"
|
|
609
|
-
"objectFit": "cover",
|
|
610
|
-
"mirror": true
|
|
260
|
+
"blendMode": "normal"
|
|
611
261
|
},
|
|
612
262
|
"ZoomBlur": {
|
|
613
263
|
"opacity": 1,
|
|
614
|
-
"blendMode": "normal"
|
|
615
|
-
"intensity": 30,
|
|
616
|
-
"center": {
|
|
617
|
-
"x": 0.5,
|
|
618
|
-
"y": 0.5
|
|
619
|
-
}
|
|
264
|
+
"blendMode": "normal"
|
|
620
265
|
}
|
|
621
266
|
};
|
|
622
267
|
function generatePropString(props, componentType, indent = " ") {
|