@react-three/postprocessing 2.14.13 → 2.15.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.
@@ -0,0 +1,52 @@
1
+ /// <reference types="react" />
2
+ import * as THREE from 'three';
3
+ import { BlendFunction, Effect } from 'postprocessing';
4
+ export declare class LensFlareEffect extends Effect {
5
+ constructor({ blendFunction, enabled, glareSize, lensPosition, iResolution, starPoints, flareSize, flareSpeed, flareShape, animated, anamorphic, colorGain, lensDirtTexture, haloScale, secondaryGhosts, aditionalStreaks, ghostScale, opacity, starBurst, }?: {
6
+ blendFunction?: BlendFunction | undefined;
7
+ enabled?: boolean | undefined;
8
+ glareSize?: number | undefined;
9
+ lensPosition?: number[] | undefined;
10
+ iResolution?: number[] | undefined;
11
+ starPoints?: number | undefined;
12
+ flareSize?: number | undefined;
13
+ flareSpeed?: number | undefined;
14
+ flareShape?: number | undefined;
15
+ animated?: boolean | undefined;
16
+ anamorphic?: boolean | undefined;
17
+ colorGain?: THREE.Color | undefined;
18
+ lensDirtTexture?: THREE.Texture | null | undefined;
19
+ haloScale?: number | undefined;
20
+ secondaryGhosts?: boolean | undefined;
21
+ aditionalStreaks?: boolean | undefined;
22
+ ghostScale?: number | undefined;
23
+ opacity?: number | undefined;
24
+ starBurst?: boolean | undefined;
25
+ });
26
+ update(_renderer: any, _inputBuffer: any, deltaTime: number): void;
27
+ }
28
+ export declare const LensFlare: import("react").ForwardRefExoticComponent<{
29
+ blendFunction?: BlendFunction | undefined;
30
+ enabled?: boolean | undefined;
31
+ glareSize?: number | undefined;
32
+ lensPosition?: number[] | undefined;
33
+ iResolution?: number[] | undefined;
34
+ starPoints?: number | undefined;
35
+ flareSize?: number | undefined;
36
+ flareSpeed?: number | undefined;
37
+ flareShape?: number | undefined;
38
+ animated?: boolean | undefined;
39
+ anamorphic?: boolean | undefined;
40
+ colorGain?: THREE.Color | undefined;
41
+ lensDirtTexture?: THREE.Texture | null | undefined;
42
+ haloScale?: number | undefined;
43
+ secondaryGhosts?: boolean | undefined;
44
+ aditionalStreaks?: boolean | undefined;
45
+ ghostScale?: number | undefined;
46
+ opacity?: number | undefined;
47
+ starBurst?: boolean | undefined;
48
+ } & {
49
+ position?: THREE.Vector3 | undefined;
50
+ followMouse?: boolean | undefined;
51
+ smoothTime?: number | undefined;
52
+ } & import("react").RefAttributes<LensFlareEffect>>;
package/dist/index.cjs CHANGED
@@ -323,6 +323,166 @@ const Autofocus = React.forwardRef(
323
323
  ] });
324
324
  }
325
325
  );
326
+ const LensFlareShader = {
327
+ fragmentShader: (
328
+ /* glsl */
329
+ `
330
+
331
+ uniform float iTime;
332
+ uniform vec2 lensPosition;
333
+ uniform vec2 iResolution;
334
+ uniform vec3 colorGain;
335
+ uniform float starPoints;
336
+ uniform float glareSize;
337
+ uniform float flareSize;
338
+ uniform float flareSpeed;
339
+ uniform float flareShape;
340
+ uniform float haloScale;
341
+ uniform float opacity;
342
+ uniform bool animated;
343
+ uniform bool anamorphic;
344
+ uniform bool enabled;
345
+ uniform bool secondaryGhosts;
346
+ uniform bool starBurst;
347
+ uniform float ghostScale;
348
+ uniform bool aditionalStreaks;
349
+ uniform sampler2D lensDirtTexture;
350
+ vec2 vxtC;
351
+
352
+ float rndf(float n){return fract(sin(n) * 43758.5453123);}float niz(float p){float fl = floor(p);float fc = fract(p);return mix(rndf(fl),rndf(fl + 1.0), fc);}
353
+ vec3 hsv2rgb(vec3 c){vec4 k = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);vec3 p = abs(fract(c.xxx + k.xyz) * 6.0 - k.www);return c.z * mix(k.xxx, clamp(p - k.xxx, 0.0, 1.0), c.y);}
354
+ float satU(float x){return clamp(x, 0.,1.);}vec2 rtU(vec2 naz, float rtn){return vec2(cos(rtn) * naz.x + sin(rtn) * naz.y,cos(rtn) * naz.y - sin(rtn) * naz.x);}
355
+ vec3 drwF(vec2 p, float intensity, float rnd, float speed, int id){float flhos = (1. / 32.) * float(id) * 0.1;float lingrad = distance(vec2(0.), p);float expg = 1. / exp(lingrad * (fract(rnd) * 0.66 + 0.33));vec3 qzTg = hsv2rgb(vec3( fract( (expg * 8.) + speed * flareSpeed + flhos), pow(1.-abs(expg*2.-1.), 0.45), 20.0 * expg * intensity));float internalStarPoints;if(anamorphic){internalStarPoints = 1.0;} else{internalStarPoints = starPoints;}float ams = length(p * flareShape * sin(internalStarPoints * atan(p.x, p.y)));float kJhg = pow(1.-satU(ams), ( anamorphic ? 100. : 12.));kJhg += satU(expg-0.9) * 3.;kJhg = pow(kJhg * expg, 8. + (1.-intensity) * 5.);if(flareSpeed > 0.0){return vec3(kJhg) * qzTg;} else{return vec3(kJhg) * flareSize * 15.;}}
356
+ float ams2(vec3 a, vec3 b) { return abs(a.x - b.x) + abs(a.y - b.y) + abs(a.z - b.z);}vec3 satU(vec3 x){return clamp(x, vec3(0.0), vec3(1.0));}
357
+ float glR(vec2 naz, vec2 pos, float zsi){vec2 mni;if(animated){mni = rtU(naz-pos, iTime * 0.1);} else{mni = naz-pos;}float ang = atan(mni.y, mni.x) * (anamorphic ? 1.0 : starPoints);float ams2 = length(mni);ams2 = pow(ams2, .9);float f0 = 1.0/(length(naz-pos)*(1.0/zsi*16.0)+.2);return f0+f0*(sin((ang))*.2 +.3);}
358
+ float sdHex(vec2 p){p = abs(p);vec2 q = vec2(p.x*2.0*0.5773503, p.y + p.x*0.5773503);return dot(step(q.xy,q.yx), 1.0-q.yx);}float fpow(float x, float k){return x > k ? pow((x-k)/(1.0-k),2.0) : 0.0;}
359
+ vec3 rHx(vec2 naz, vec2 p, float s, vec3 col){naz -= p;if (abs(naz.x) < 0.2*s && abs(naz.y) < 0.2*s){return mix(vec3(0),mix(vec3(0),col,0.1 + fpow(length(naz/s),0.1)*10.0),smoothstep(0.0,0.1,sdHex(naz*20.0/s)));}return vec3(0);}
360
+ vec3 mLs(vec2 naz, vec2 pos){vec2 mni = naz-pos;vec2 zxMp = naz*(length(naz));float ang = atan(mni.x,mni.y);float f0 = .3/(length(naz-pos)*16.0+1.0);f0 = f0*(sin(niz(sin(ang*3.9-(animated ? iTime : 0.0) * 0.3) * starPoints))*.2 );float f1 = max(0.01-pow(length(naz+1.2*pos),1.9),.0)*7.0;float f2 = max(.9/(10.0+32.0*pow(length(zxMp+0.99*pos),2.0)),.0)*0.35;float f22 = max(.9/(11.0+32.0*pow(length(zxMp+0.85*pos),2.0)),.0)*0.23;float f23 = max(.9/(12.0+32.0*pow(length(zxMp+0.95*pos),2.0)),.0)*0.6;vec2 ztX = mix(naz,zxMp, 0.1);float f4 = max(0.01-pow(length(ztX+0.4*pos),2.9),.0)*4.02;float f42 = max(0.0-pow(length(ztX+0.45*pos),2.9),.0)*4.1;float f43 = max(0.01-pow(length(ztX+0.5*pos),2.9),.0)*4.6;ztX = mix(naz,zxMp,-.4);float f5 = max(0.01-pow(length(ztX+0.1*pos),5.5),.0)*2.0;float f52 = max(0.01-pow(length(ztX+0.2*pos),5.5),.0)*2.0;float f53 = max(0.01-pow(length(ztX+0.1*pos),5.5),.0)*2.0;ztX = mix(naz,zxMp, 2.1);float f6 = max(0.01-pow(length(ztX-0.3*pos),1.61),.0)*3.159;float f62 = max(0.01-pow(length(ztX-0.325*pos),1.614),.0)*3.14;float f63 = max(0.01-pow(length(ztX-0.389*pos),1.623),.0)*3.12;vec3 c = vec3(glR(naz,pos, glareSize));vec2 prot;if(animated){prot = rtU(naz - pos, (iTime * 0.1));} else if(anamorphic){prot = rtU(naz - pos, 1.570796);} else {prot = naz - pos;}c += drwF(prot, (anamorphic ? flareSize * 10. : flareSize), 0.1, iTime, 1);c.r+=f1+f2+f4+f5+f6; c.g+=f1+f22+f42+f52+f62; c.b+=f1+f23+f43+f53+f63;c = c*1.3 * vec3(length(zxMp)+.09);c+=vec3(f0);return c;}
361
+ vec3 cc(vec3 clr, float fct,float fct2){float w = clr.x+clr.y+clr.z;return mix(clr,vec3(w)*fct,w*fct2);}float rnd(vec2 p){float f = fract(sin(dot(p, vec2(12.1234, 72.8392) )*45123.2));return f;}float rnd(float w){float f = fract(sin(w)*1000.);return f;}
362
+ float rShp(vec2 p, int N){float f;float a=atan(p.x,p.y)+.2;float b=6.28319/float(N);f=smoothstep(.5,.51, cos(floor(.5+a/b)*b-a)*length(p.xy)* 2.0 -ghostScale);return f;}
363
+ vec3 drC(vec2 p, float zsi, float dCy, vec3 clr, vec3 clr2, float ams2, vec2 esom){float l = length(p + esom*(ams2*2.))+zsi/2.;float l2 = length(p + esom*(ams2*4.))+zsi/3.;float c = max(0.01-pow(length(p + esom*ams2), zsi*ghostScale), 0.0)*10.;float c1 = max(0.001-pow(l-0.3, 1./40.)+sin(l*20.), 0.0)*3.;float c2 = max(0.09/pow(length(p-esom*ams2/.5)*1., .95), 0.0)/20.;float s = max(0.02-pow(rShp(p*5. + esom*ams2*5. + dCy, 6) , 1.), 0.0)*1.5;clr = cos(vec3(0.44, .24, .2)*8. + ams2*4.)*0.5+.5;vec3 f = c*clr;f += c1*clr;f += c2*clr;f += s*clr;return f-0.01;}
364
+ vec4 geLC(float x){return vec4(vec3(mix(mix(mix(mix(mix(mix(mix(mix(mix(mix(mix(mix(mix(mix(mix(vec3(0., 0., 0.),vec3(0., 0., 0.), smoothstep(0.0, 0.063, x)),vec3(0., 0., 0.), smoothstep(0.063, 0.125, x)),vec3(0.0, 0., 0.), smoothstep(0.125, 0.188, x)),vec3(0.188, 0.131, 0.116), smoothstep(0.188, 0.227, x)),vec3(0.31, 0.204, 0.537), smoothstep(0.227, 0.251, x)),vec3(0.192, 0.106, 0.286), smoothstep(0.251, 0.314, x)),vec3(0.102, 0.008, 0.341), smoothstep(0.314, 0.392, x)),vec3(0.086, 0.0, 0.141), smoothstep(0.392, 0.502, x)),vec3(1.0, 0.31, 0.0), smoothstep(0.502, 0.604, x)),vec3(.1, 0.1, 0.1), smoothstep(0.604, 0.643, x)),vec3(1.0, 0.929, 0.0), smoothstep(0.643, 0.761, x)),vec3(1.0, 0.086, 0.424), smoothstep(0.761, 0.847, x)),vec3(1.0, 0.49, 0.0), smoothstep(0.847, 0.89, x)),vec3(0.945, 0.275, 0.475), smoothstep(0.89, 0.941, x)),vec3(0.251, 0.275, 0.796), smoothstep(0.941, 1.0, x))),1.0);}
365
+ float diTN(vec2 p){vec2 f = fract(p);f = (f * f) * (3.0 - (2.0 * f));float n = dot(floor(p), vec2(1.0, 157.0));vec4 a = fract(sin(vec4(n + 0.0, n + 1.0, n + 157.0, n + 158.0)) * 43758.5453123);return mix(mix(a.x, a.y, f.x), mix(a.z, a.w, f.x), f.y);}
366
+ float fbm(vec2 p){const mat2 m = mat2(0.80, -0.60, 0.60, 0.80);float f = 0.0;f += 0.5000*diTN(p); p = m*p*2.02;f += 0.2500*diTN(p); p = m*p*2.03;f += 0.1250*diTN(p); p = m*p*2.01;f += 0.0625*diTN(p);return f/0.9375;}
367
+ vec4 geLS(vec2 p){vec2 pp = (p - vec2(0.5)) * 2.0;float a = atan(pp.y, pp.x);vec4 cp = vec4(sin(a * 1.0), length(pp), sin(a * 13.0), sin(a * 53.0));float d = sin(clamp(pow(length(vec2(0.5) - p) * 0.5 + haloScale /2., 5.0), 0.0, 1.0) * 3.14159);vec3 c = vec3(d) * vec3(fbm(cp.xy * 16.0) * fbm(cp.zw * 9.0) * max(max(max(max(0.5, sin(a * 1.0)), sin(a * 3.0) * 0.8), sin(a * 7.0) * 0.8), sin(a * 9.0) * 10.6));c *= vec3(mix(2.0, (sin(length(pp.xy) * 256.0) * 0.5) + 0.5, sin((clamp((length(pp.xy) - 0.875) / 0.1, 0.0, 1.0) + 0.0) * 2.0 * 3.14159) * 1.5) + 0.5) * 0.3275;return vec4(vec3(c * 1.0), d);}
368
+ vec4 geLD(vec2 p){p.xy += vec2(fbm(p.yx * 3.0), fbm(p.yx * 2.0)) * 0.0825;vec3 o = vec3(mix(0.125, 0.25, max(max(smoothstep(0.1, 0.0, length(p - vec2(0.25))),smoothstep(0.4, 0.0, length(p - vec2(0.75)))),smoothstep(0.8, 0.0, length(p - vec2(0.875, 0.125))))));o += vec3(max(fbm(p * 1.0) - 0.5, 0.0)) * 0.5;o += vec3(max(fbm(p * 2.0) - 0.5, 0.0)) * 0.5;o += vec3(max(fbm(p * 4.0) - 0.5, 0.0)) * 0.25;o += vec3(max(fbm(p * 8.0) - 0.75, 0.0)) * 1.0;o += vec3(max(fbm(p * 16.0) - 0.75, 0.0)) * 0.75;o += vec3(max(fbm(p * 64.0) - 0.75, 0.0)) * 0.5;return vec4(clamp(o, vec3(0.15), vec3(1.0)), 1.0);}
369
+ vec4 txL(sampler2D tex, vec2 xtC){if(((xtC.x < 0.) || (xtC.y < 0.)) || ((xtC.x > 1.) || (xtC.y > 1.))){return vec4(0.0);}else{return texture(tex, xtC); }}
370
+ vec4 txD(sampler2D tex, vec2 xtC, vec2 dir, vec3 ditn) {return vec4(txL(tex, (xtC + (dir * ditn.r))).r,txL(tex, (xtC + (dir * ditn.g))).g,txL(tex, (xtC + (dir * ditn.b))).b,1.0);}
371
+ vec4 strB(){vec2 aspXtc = vec2(1.0) - (((vxtC - vec2(0.5)) * vec2(1.0)) + vec2(0.5)); vec2 xtC = vec2(1.0) - vxtC; vec2 ghvc = (vec2(0.5) - xtC) * 0.3 - lensPosition; vec2 ghNm = normalize(ghvc * vec2(1.0)) * vec2(1.0);vec2 haloVec = normalize(ghvc) * 0.6;vec2 hlNm = ghNm * 0.6;vec2 texelSize = vec2(1.0) / vec2(iResolution.xy);vec3 ditn = vec3(-(texelSize.x * 1.5), 0.2, texelSize.x * 1.5);vec4 c = vec4(0.0);for (int i = 0; i < 8; i++) {vec2 offset = xtC + (ghvc * float(i));c += txD(lensDirtTexture, offset, ghNm, ditn) * pow(max(0.0, 1.0 - (length(vec2(0.5) - offset) / length(vec2(0.5)))), 10.0);}vec2 uyTrz = xtC + hlNm; return (c * geLC((length(vec2(0.5) - aspXtc) / length(vec2(haloScale))))) +(txD(lensDirtTexture, uyTrz, ghNm, ditn) * pow(max(0.0, 1.0 - (length(vec2(0.5) - uyTrz) / length(vec2(0.5)))), 10.0));}
372
+ void mainImage(vec4 v,vec2 r,out vec4 i){vec2 g=r-.5;g.y*=iResolution.y/iResolution.x;vec2 l=lensPosition*.5;l.y*=iResolution.y/iResolution.x;vec3 f=mLs(g,l)*20.*colorGain/256.;if(aditionalStreaks){vec3 o=vec3(.9,.2,.1),p=vec3(.3,.1,.9);for(float n=0.;n<10.;n++)f+=drC(g,pow(rnd(n*2e3)*2.8,.1)+1.41,0.,o+n,p+n,rnd(n*20.)*3.+.2-.5,lensPosition);}if(secondaryGhosts){vec3 n=vec3(0);n+=rHx(g,-lensPosition*.25,ghostScale*1.4,vec3(.25,.35,0));n+=rHx(g,lensPosition*.25,ghostScale*.5,vec3(1,.5,.5));n+=rHx(g,lensPosition*.1,ghostScale*1.6,vec3(1));n+=rHx(g,lensPosition*1.8,ghostScale*2.,vec3(0,.5,.75));n+=rHx(g,lensPosition*1.25,ghostScale*.8,vec3(1,1,.5));n+=rHx(g,-lensPosition*1.25,ghostScale*5.,vec3(.5,.5,.25));n+=fpow(1.-abs(distance(lensPosition*.8,g)-.7),.985)*colorGain/2100.;f+=n;}if(starBurst){vxtC=g+.5;vec4 n=geLD(g);float o=1.-clamp(0.5,0.,.5)*2.;n+=mix(n,pow(n*2.,vec4(2))*.5,o);float s=(g.x+g.y)*(1./6.);vec2 d=mat2(cos(s),-sin(s),sin(s),cos(s))*vxtC;n+=geLS(d)*2.;f+=clamp(n.xyz*strB().xyz,.01,1.);}i=enabled?vec4(mix(f,vec3(0),opacity)+v.xyz,v.w):vec4(v);}
373
+ `
374
+ )
375
+ };
376
+ class LensFlareEffect extends postprocessing.Effect {
377
+ constructor({
378
+ blendFunction = postprocessing.BlendFunction.NORMAL,
379
+ enabled = true,
380
+ glareSize = 0.2,
381
+ lensPosition = [0.01, 0.01],
382
+ iResolution = [0, 0],
383
+ starPoints = 6,
384
+ flareSize = 0.01,
385
+ flareSpeed = 0.01,
386
+ flareShape = 0.01,
387
+ animated = true,
388
+ anamorphic = false,
389
+ colorGain = new THREE__namespace.Color(20, 20, 20),
390
+ lensDirtTexture = null,
391
+ haloScale = 0.5,
392
+ secondaryGhosts = true,
393
+ aditionalStreaks = true,
394
+ ghostScale = 0,
395
+ opacity = 1,
396
+ starBurst = false
397
+ } = {}) {
398
+ super("LensFlareEffect", LensFlareShader.fragmentShader, {
399
+ blendFunction,
400
+ uniforms: /* @__PURE__ */ new Map([
401
+ ["enabled", new THREE__namespace.Uniform(enabled)],
402
+ ["glareSize", new THREE__namespace.Uniform(glareSize)],
403
+ ["lensPosition", new THREE__namespace.Uniform(lensPosition)],
404
+ ["iTime", new THREE__namespace.Uniform(0)],
405
+ ["iResolution", new THREE__namespace.Uniform(iResolution)],
406
+ ["starPoints", new THREE__namespace.Uniform(starPoints)],
407
+ ["flareSize", new THREE__namespace.Uniform(flareSize)],
408
+ ["flareSpeed", new THREE__namespace.Uniform(flareSpeed)],
409
+ ["flareShape", new THREE__namespace.Uniform(flareShape)],
410
+ ["animated", new THREE__namespace.Uniform(animated)],
411
+ ["anamorphic", new THREE__namespace.Uniform(anamorphic)],
412
+ ["colorGain", new THREE__namespace.Uniform(colorGain)],
413
+ ["lensDirtTexture", new THREE__namespace.Uniform(lensDirtTexture)],
414
+ ["haloScale", new THREE__namespace.Uniform(haloScale)],
415
+ ["secondaryGhosts", new THREE__namespace.Uniform(secondaryGhosts)],
416
+ ["aditionalStreaks", new THREE__namespace.Uniform(aditionalStreaks)],
417
+ ["ghostScale", new THREE__namespace.Uniform(ghostScale)],
418
+ ["starBurst", new THREE__namespace.Uniform(starBurst)],
419
+ ["opacity", new THREE__namespace.Uniform(opacity)]
420
+ ])
421
+ });
422
+ }
423
+ update(_renderer, _inputBuffer, deltaTime) {
424
+ const iTime = this.uniforms.get("iTime");
425
+ if (iTime) {
426
+ iTime.value += deltaTime;
427
+ }
428
+ }
429
+ }
430
+ const LensFlare = React.forwardRef(
431
+ ({ position = new THREE__namespace.Vector3(-25, 6, -60), followMouse = false, smoothTime = 0.07, ...props }, ref) => {
432
+ const viewport = fiber.useThree(({ viewport: viewport2 }) => viewport2);
433
+ const raycaster = fiber.useThree(({ raycaster: raycaster2 }) => raycaster2);
434
+ const pointer = fiber.useThree(({ pointer: pointer2 }) => pointer2);
435
+ const { scene, camera } = React.useContext(EffectComposerContext);
436
+ const [projectedPosition] = React.useState(() => new THREE__namespace.Vector3());
437
+ const [mouse2d] = React.useState(() => new THREE__namespace.Vector2());
438
+ const effect = React.useMemo(() => new LensFlareEffect(props), [props]);
439
+ fiber.useFrame((_, delta) => {
440
+ var _a, _b, _c;
441
+ const uLensPosition = effect.uniforms.get("lensPosition");
442
+ const uOpacity = effect.uniforms.get("opacity");
443
+ if (!uLensPosition || !uOpacity)
444
+ return;
445
+ let target = 1;
446
+ if (followMouse) {
447
+ uLensPosition.value.x = pointer.x;
448
+ uLensPosition.value.y = pointer.y;
449
+ target = 0;
450
+ } else {
451
+ projectedPosition.copy(position).project(camera);
452
+ if (projectedPosition.z > 1)
453
+ return;
454
+ uLensPosition.value.x = projectedPosition.x;
455
+ uLensPosition.value.y = projectedPosition.y;
456
+ mouse2d.set(projectedPosition.x, projectedPosition.y);
457
+ raycaster.setFromCamera(mouse2d, camera);
458
+ const intersects = raycaster.intersectObjects(scene.children, true);
459
+ const { object } = intersects[0];
460
+ if (object) {
461
+ if (((_a = object.userData) == null ? void 0 : _a.lensflare) === "no-occlusion") {
462
+ target = 0;
463
+ } else if (object instanceof THREE__namespace.Mesh) {
464
+ if (((_c = (_b = object.material.uniforms) == null ? void 0 : _b._transmission) == null ? void 0 : _c.value) > 0.2) {
465
+ target = 0.2;
466
+ } else if (object.material._transmission && object.material._transmission > 0.2) {
467
+ target = 0.2;
468
+ } else if (object.material.transparent) {
469
+ target = object.material.opacity;
470
+ }
471
+ }
472
+ }
473
+ }
474
+ maath.easing.damp(uOpacity, "value", target, smoothTime, delta);
475
+ });
476
+ React.useEffect(() => {
477
+ const iResolution = effect.uniforms.get("iResolution");
478
+ if (iResolution) {
479
+ iResolution.value.x = viewport.width;
480
+ iResolution.value.y = viewport.height;
481
+ }
482
+ }, [effect, viewport]);
483
+ return /* @__PURE__ */ jsxRuntime.jsx("primitive", { ref, object: effect, dispose: null });
484
+ }
485
+ );
326
486
  const Bloom = wrapEffect(postprocessing.BloomEffect, {
327
487
  blendFunction: postprocessing.BlendFunction.ADD
328
488
  });
@@ -3431,6 +3591,8 @@ exports.GodRays = GodRays;
3431
3591
  exports.Grid = Grid;
3432
3592
  exports.HueSaturation = HueSaturation;
3433
3593
  exports.LUT = LUT;
3594
+ exports.LensFlare = LensFlare;
3595
+ exports.LensFlareEffect = LensFlareEffect;
3434
3596
  exports.N8AO = N8AO;
3435
3597
  exports.Noise = Noise;
3436
3598
  exports.Outline = Outline;