kmcom-nuxt-layers 1.7.8 → 2.1.6
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/docs/layout-shift-causes.md +94 -0
- package/layers/animations/nuxt.config.ts +17 -0
- package/layers/animations/package.json +6 -0
- package/layers/animations/tsconfig.json +7 -0
- package/layers/canvas/app/components/ShaderCanvas.vue +125 -0
- package/layers/{shader → canvas}/app/composables/useRendererCapabilities.ts +10 -2
- package/layers/{shader → canvas}/app/composables/useShaderTime.ts +3 -3
- package/layers/canvas/app/types/renderer.ts +50 -0
- package/layers/canvas/nuxt.config.ts +189 -0
- package/layers/canvas/package.json +22 -0
- package/layers/canvas/tsconfig.json +7 -0
- package/layers/content/app/components/Blog/Article.vue +12 -6
- package/layers/content/app/components/Blog/Card.vue +24 -24
- package/layers/content/app/components/Blog/List.vue +8 -11
- package/layers/content/app/components/Gallery/AmbientImage.vue +15 -15
- package/layers/content/app/components/Gallery/Card.vue +19 -19
- package/layers/content/app/components/Gallery/Detail.vue +29 -20
- package/layers/content/app/components/Gallery/Grid.vue +8 -11
- package/layers/content/app/components/Gallery/ImageDetail.vue +18 -17
- package/layers/content/app/components/Gallery/ImagePage.vue +8 -9
- package/layers/content/app/components/Gallery/Lightbox.vue +38 -33
- package/layers/content/app/components/Gallery/Page.vue +8 -8
- package/layers/content/app/components/Gallery/SlugPage.vue +7 -8
- package/layers/content/app/components/NuxtContent/Detail.vue +29 -27
- package/layers/content/app/components/NuxtContent/List.vue +10 -9
- package/layers/content/app/components/NuxtContent/Renderer.vue +4 -4
- package/layers/content/app/components/NuxtContent/Surround.vue +3 -3
- package/layers/content/app/components/NuxtContent/Toc.vue +5 -5
- package/layers/content/app/components/Portfolio/Card.vue +17 -17
- package/layers/content/app/components/Portfolio/ColorPalette.vue +11 -11
- package/layers/content/app/components/Portfolio/Detail.vue +9 -13
- package/layers/content/app/components/Portfolio/ItemPage.vue +8 -9
- package/layers/content/app/components/Portfolio/List.vue +10 -13
- package/layers/content/app/components/Portfolio/Page.vue +8 -8
- package/layers/content/app/components/Portfolio/Typography.vue +4 -4
- package/layers/content/app/components/content/Figure.vue +14 -14
- package/layers/content/app/composables/createPortfolioComposables.ts +1 -0
- package/layers/content/app/composables/useCollectionItem.ts +4 -1
- package/layers/content/app/composables/useCollectionSurround.ts +1 -0
- package/layers/content/app/composables/useContentPage.ts +1 -0
- package/layers/content/app/composables/useGalleryItems.ts +1 -0
- package/layers/content/app/composables/usePortfolioItems.ts +1 -0
- package/layers/content/app/types/app-config.d.ts +1 -1
- package/layers/content/app/types/content.ts +27 -30
- package/layers/content/nuxt.config.ts +4 -3
- package/layers/content/package.json +4 -4
- package/layers/core/app/components/DiagnosticsPage.vue +203 -203
- package/layers/core/app/components/ErrorBoundary.vue +51 -49
- package/layers/core/app/components/LoadingScreen.vue +112 -111
- package/layers/core/app/composables/useBrowser.ts +2 -1
- package/layers/core/app/composables/useCache.ts +4 -2
- package/layers/core/app/composables/useErrorLog.ts +7 -10
- package/layers/core/app/composables/useFeatures.ts +4 -2
- package/layers/core/app/composables/useLoading.ts +1 -0
- package/layers/core/app/composables/useNetworkInfo.ts +1 -0
- package/layers/core/app/composables/usePWAInfo.ts +4 -3
- package/layers/core/app/composables/useRendering.ts +1 -0
- package/layers/core/app/composables/useScreen.ts +1 -0
- package/layers/core/app/composables/useScrollGuard.ts +2 -1
- package/layers/core/app/pages/[...slug].vue +99 -99
- package/layers/core/app/plugins/error-handler.ts +1 -1
- package/layers/core/app/plugins/feature-detection.client.ts +2 -1
- package/layers/core/app/plugins/init.ts +8 -19
- package/layers/core/app/plugins/loading.client.ts +4 -2
- package/layers/core/app/plugins/scroll-guard.client.ts +4 -4
- package/layers/core/app/types/app-config.d.ts +5 -1
- package/layers/core/app/types/detection.ts +8 -8
- package/layers/core/app/types/index.ts +5 -4
- package/layers/core/app/types/loading.ts +3 -3
- package/layers/core/app/types/runtime-config.ts +2 -2
- package/layers/core/app/types/scroll-guard.ts +2 -2
- package/layers/core/app/types/site.ts +43 -0
- package/layers/core/app/utils/helpers.ts +4 -0
- package/layers/core/nuxt.config.ts +1 -0
- package/layers/core/package.json +1 -1
- package/layers/feeds/app/app.config.ts +23 -0
- package/layers/feeds/app/assets/css/feeds.css +66 -0
- package/layers/feeds/app/plugins/feed-head.ts +73 -0
- package/layers/feeds/nuxt.config.ts +36 -0
- package/layers/feeds/package.json +23 -0
- package/layers/feeds/tsconfig.json +7 -0
- package/layers/forms/app/components/Form/Contact.vue +1 -0
- package/layers/forms/app/components/Form/Field.vue +70 -74
- package/layers/forms/app/composables/useFormSchema.ts +2 -0
- package/layers/forms/app/config/fields.ts +1 -0
- package/layers/forms/app/types/app-config.d.ts +1 -1
- package/layers/forms/app/types/fields.ts +1 -1
- package/layers/forms/nuxt.config.ts +4 -9
- package/layers/forms/package.json +4 -9
- package/layers/layout/app/assets/css/layout/grids.css +12 -12
- package/layers/layout/app/assets/css/layout/modes/fluid.css +10 -10
- package/layers/layout/app/components/Layout/Container.vue +34 -34
- package/layers/layout/app/components/Layout/Grid/Debug.vue +55 -55
- package/layers/layout/app/components/Layout/Grid/Item.vue +239 -231
- package/layers/layout/app/components/Layout/Main.vue +27 -23
- package/layers/layout/app/components/Layout/Page/Container.vue +71 -67
- package/layers/layout/app/components/Layout/Page/Header.vue +22 -21
- package/layers/layout/app/components/Layout/Page/index.vue +1 -0
- package/layers/layout/app/components/Layout/Section/Gallery.vue +49 -48
- package/layers/layout/app/components/Layout/Section/Grid.vue +29 -29
- package/layers/layout/app/components/Layout/Section/Hero.vue +31 -29
- package/layers/layout/app/components/Layout/Section/Sidebar.vue +48 -48
- package/layers/layout/app/components/Layout/Section/Split.vue +28 -28
- package/layers/layout/app/components/Layout/Section/Stack.vue +39 -37
- package/layers/layout/app/components/Layout/Section/Title.vue +21 -20
- package/layers/layout/app/composables/GridPlacement.ts +1 -1
- package/layers/layout/app/composables/useGridConfig.ts +2 -1
- package/layers/layout/app/types/app-config.d.ts +2 -1
- package/layers/layout/app/types/layouts.ts +4 -4
- package/layers/layout/nuxt.config.ts +4 -1
- package/layers/mailer/nuxt.config.ts +26 -0
- package/layers/mailer/package.json +15 -0
- package/layers/mailer/tsconfig.json +7 -0
- package/layers/motion/app/components/Motion/index.vue +5 -5
- package/layers/motion/nuxt.config.ts +6 -22
- package/layers/motion/package.json +0 -5
- package/layers/navigation/app/app.config.ts +38 -0
- package/layers/navigation/app/assets/css/navigation.css +3 -0
- package/layers/navigation/app/components/Links/Group.vue +49 -0
- package/layers/navigation/app/components/Links/Named.vue +33 -0
- package/layers/navigation/app/components/Mast/Footer.vue +13 -0
- package/layers/{ui → navigation}/app/components/Mast/Header.vue +2 -2
- package/layers/{ui → navigation}/app/components/Mast/Nav.vue +2 -2
- package/layers/navigation/app/components/Mast/NavModal.vue +76 -0
- package/layers/{ui → navigation}/app/composables/mastNav.ts +7 -4
- package/layers/{ui → navigation}/app/composables/toast.ts +1 -0
- package/layers/{ui → navigation}/app/composables/useSite.ts +1 -0
- package/layers/navigation/app/types/nav.ts +11 -0
- package/layers/{ui → navigation}/app/utils/createModal.ts +2 -1
- package/layers/navigation/nuxt.config.ts +19 -0
- package/layers/navigation/package.json +6 -0
- package/layers/navigation/tsconfig.json +7 -0
- package/layers/page-transitions/app/app.config.ts +15 -0
- package/layers/page-transitions/app/composables/usePageTransition.ts +32 -0
- package/layers/page-transitions/app/plugins/page-transitions.client.ts +14 -0
- package/layers/page-transitions/nuxt.config.ts +17 -0
- package/layers/page-transitions/package.json +6 -0
- package/layers/page-transitions/tsconfig.json +7 -0
- package/layers/routing/app/composables/{useFeatures.ts → useFeatureFlags.ts} +1 -1
- package/layers/routing/app/composables/useRoutingConfig.ts +5 -6
- package/layers/routing/app/middleware/01.maintenance.global.ts +1 -1
- package/layers/routing/app/middleware/02.governance.global.ts +2 -2
- package/layers/routing/app/plugins/feature-flags.client.ts +4 -4
- package/layers/routing/app/plugins/scroll-routing.client.ts +4 -3
- package/layers/routing/app/types/app-config.d.ts +2 -1
- package/layers/routing/app/types/route-meta.d.ts +1 -1
- package/layers/routing/app/types/routing.ts +5 -2
- package/layers/routing/app/utils/resolveRoute.ts +2 -2
- package/layers/routing/nuxt.config.ts +6 -2
- package/layers/scripts/app/app.config.ts +44 -0
- package/layers/scripts/app/composables/useAnalytics.ts +49 -0
- package/layers/scripts/app/composables/useGtm.ts +21 -0
- package/layers/scripts/app/composables/useScriptLoader.ts +31 -0
- package/layers/scripts/app/composables/useScriptsConsent.ts +23 -0
- package/layers/scripts/app/composables/useYoutubeEmbed.ts +14 -0
- package/layers/scripts/nuxt.config.ts +22 -0
- package/layers/scripts/package.json +14 -0
- package/layers/scripts/tsconfig.json +7 -0
- package/layers/{motion/app/types/app-config.d.ts → scroll/app/app.config.ts} +16 -1
- package/layers/scroll/app/components/Motion/HorizontalScroll.vue +61 -0
- package/layers/scroll/app/components/Motion/Parallax.vue +76 -0
- package/layers/scroll/app/components/Motion/PinnedSection.vue +77 -0
- package/layers/scroll/app/components/Motion/ScrollLink.vue +50 -0
- package/layers/scroll/app/components/Motion/ScrollProgress.vue +85 -0
- package/layers/scroll/app/components/Motion/ScrollScene.vue +121 -0
- package/layers/{motion → scroll}/app/components/Motion/ScrollStats.vue +51 -50
- package/layers/scroll/app/components/Motion/ScrollStep.vue +44 -0
- package/layers/{motion → scroll}/app/composables/useGsap.ts +0 -6
- package/layers/{motion → scroll}/app/composables/useScrollSteps.ts +2 -5
- package/layers/{motion → scroll}/app/composables/useSectionProgress.ts +14 -7
- package/layers/{motion → scroll}/app/composables/useSmoothScroll.ts +6 -37
- package/layers/{motion → scroll}/app/plugins/locomotive-scroll.client.ts +3 -2
- package/layers/scroll/nuxt.config.ts +33 -0
- package/layers/scroll/package.json +11 -0
- package/layers/scroll/tsconfig.json +7 -0
- package/layers/seo/app/app.config.ts +30 -0
- package/layers/seo/app/composables/useSeoConfig.ts +14 -0
- package/layers/seo/nuxt.config.ts +34 -0
- package/layers/seo/package.json +14 -0
- package/layers/seo/tsconfig.json +7 -0
- package/layers/shader/app/components/Effect/Bloom.vue +2 -2
- package/layers/shader/app/components/Effect/ChromaticAberration.vue +2 -2
- package/layers/shader/app/components/Effect/PostProcessing.vue +14 -10
- package/layers/shader/app/components/Material/AmbientAurora.client.vue +162 -158
- package/layers/shader/app/components/Material/AmbientFlow.client.vue +165 -161
- package/layers/shader/app/components/Material/AmbientGradientMesh.client.vue +179 -162
- package/layers/shader/app/components/Material/AmbientNebula.client.vue +167 -163
- package/layers/shader/app/components/Material/AmbientOcean.client.vue +154 -150
- package/layers/shader/app/components/Material/Fresnel.client.vue +78 -75
- package/layers/shader/app/components/Material/Gradient.client.vue +175 -173
- package/layers/shader/app/components/Material/Image.client.vue +228 -225
- package/layers/shader/app/components/Material/Node.client.vue +66 -63
- package/layers/shader/app/components/Material/Noise.client.vue +128 -124
- package/layers/shader/app/components/Mesh/Plane.vue +20 -18
- package/layers/shader/app/components/Node/Color.client.vue +47 -45
- package/layers/shader/app/components/Node/Fresnel.client.vue +47 -47
- package/layers/shader/app/components/Node/Gradient.client.vue +120 -70
- package/layers/shader/app/components/Node/Mix.client.vue +41 -39
- package/layers/shader/app/components/Node/Noise.client.vue +91 -83
- package/layers/shader/app/components/Pipeline/ACESTonemap.client.vue +7 -10
- package/layers/shader/app/components/Pipeline/AddBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/AgedFilm.client.vue +61 -40
- package/layers/shader/app/components/Pipeline/Aurora.client.vue +92 -56
- package/layers/shader/app/components/Pipeline/BilinearGradient.client.vue +65 -34
- package/layers/shader/app/components/Pipeline/BillowNoise.client.vue +56 -32
- package/layers/shader/app/components/Pipeline/BrightnessContrast.client.vue +36 -20
- package/layers/shader/app/components/Pipeline/CellularNoise.client.vue +55 -31
- package/layers/shader/app/components/Pipeline/ChannelMixer.client.vue +62 -34
- package/layers/shader/app/components/Pipeline/ChebyshevNoiseField.client.vue +77 -50
- package/layers/shader/app/components/Pipeline/Checkerboard.client.vue +50 -31
- package/layers/shader/app/components/Pipeline/ChromaticAberration.client.vue +49 -33
- package/layers/shader/app/components/Pipeline/ChromaticScreenWaves.client.vue +61 -36
- package/layers/shader/app/components/Pipeline/Circle.client.vue +53 -30
- package/layers/shader/app/components/Pipeline/Clouds.client.vue +86 -48
- package/layers/shader/app/components/Pipeline/ColorBurnBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/ColorDodgeBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/ColourRamp.client.vue +76 -46
- package/layers/shader/app/components/Pipeline/ComplexPlaneField.client.vue +80 -50
- package/layers/shader/app/components/Pipeline/ConicGradient.client.vue +46 -28
- package/layers/shader/app/components/Pipeline/CosinePalette.client.vue +80 -53
- package/layers/shader/app/components/Pipeline/CoverageAlpha.client.vue +12 -14
- package/layers/shader/app/components/Pipeline/Cross.client.vue +66 -37
- package/layers/shader/app/components/Pipeline/CurlNoise.client.vue +58 -35
- package/layers/shader/app/components/Pipeline/DarkenBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/DayNightCycle.client.vue +65 -39
- package/layers/shader/app/components/Pipeline/Desaturate.client.vue +23 -16
- package/layers/shader/app/components/Pipeline/DiagonalGradient.client.vue +50 -29
- package/layers/shader/app/components/Pipeline/DiamondGradient.client.vue +47 -29
- package/layers/shader/app/components/Pipeline/DifferenceBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/DivideBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/DomainWarpedNoise.client.vue +79 -37
- package/layers/shader/app/components/Pipeline/Dots.client.vue +70 -34
- package/layers/shader/app/components/Pipeline/DuoTone.client.vue +40 -26
- package/layers/shader/app/components/Pipeline/ExclusionBlend.client.vue +38 -19
- package/layers/shader/app/components/Pipeline/ExponentialFog.client.vue +52 -35
- package/layers/shader/app/components/Pipeline/Exposure.client.vue +22 -16
- package/layers/shader/app/components/Pipeline/FBMNoise.client.vue +62 -39
- package/layers/shader/app/components/Pipeline/FilmBurn.client.vue +60 -38
- package/layers/shader/app/components/Pipeline/FilmGrain.client.vue +53 -31
- package/layers/shader/app/components/Pipeline/FisheyeRay.client.vue +39 -28
- package/layers/shader/app/components/Pipeline/Flame.client.vue +59 -35
- package/layers/shader/app/components/Pipeline/FocalGradient.client.vue +56 -33
- package/layers/shader/app/components/Pipeline/Gamma.client.vue +21 -16
- package/layers/shader/app/components/Pipeline/GodRays.client.vue +76 -42
- package/layers/shader/app/components/Pipeline/GradientNoise.client.vue +57 -32
- package/layers/shader/app/components/Pipeline/Grain.client.vue +84 -47
- package/layers/shader/app/components/Pipeline/Grid.client.vue +56 -33
- package/layers/shader/app/components/Pipeline/Halation.client.vue +52 -34
- package/layers/shader/app/components/Pipeline/Halftone.client.vue +34 -23
- package/layers/shader/app/components/Pipeline/HardLightBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/Haze.client.vue +57 -36
- package/layers/shader/app/components/Pipeline/Hexagon.client.vue +54 -31
- package/layers/shader/app/components/Pipeline/Hue.client.vue +20 -16
- package/layers/shader/app/components/Pipeline/Invert.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/LensFlare.client.vue +56 -37
- package/layers/shader/app/components/Pipeline/LightenBlend.client.vue +31 -19
- package/layers/shader/app/components/Pipeline/LinearGradient.client.vue +36 -28
- package/layers/shader/app/components/Pipeline/LinearGradient4.client.vue +65 -43
- package/layers/shader/app/components/Pipeline/LinearToSRGB.client.vue +26 -20
- package/layers/shader/app/components/Pipeline/Marble.client.vue +97 -57
- package/layers/shader/app/components/Pipeline/MixBlend.client.vue +45 -35
- package/layers/shader/app/components/Pipeline/MonochromeTint.client.vue +40 -25
- package/layers/shader/app/components/Pipeline/MultiplyBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/NoisyGradient.client.vue +83 -42
- package/layers/shader/app/components/Pipeline/NoisyGradientBlend.client.vue +141 -81
- package/layers/shader/app/components/Pipeline/OverlayBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/PaperTexture.client.vue +47 -30
- package/layers/shader/app/components/Pipeline/Polygon.client.vue +74 -37
- package/layers/shader/app/components/Pipeline/Posterise.client.vue +21 -16
- package/layers/shader/app/components/Pipeline/RadialGradient.client.vue +45 -30
- package/layers/shader/app/components/Pipeline/RayAutoOrbit.client.vue +43 -30
- package/layers/shader/app/components/Pipeline/RayMouseOrbit.client.vue +60 -47
- package/layers/shader/app/components/Pipeline/RayRotateX.client.vue +28 -20
- package/layers/shader/app/components/Pipeline/RayRotateY.client.vue +28 -20
- package/layers/shader/app/components/Pipeline/RayRotateZ.client.vue +28 -20
- package/layers/shader/app/components/Pipeline/RayTiltBasis.client.vue +55 -34
- package/layers/shader/app/components/Pipeline/RaymarchTunnel.client.vue +132 -88
- package/layers/shader/app/components/Pipeline/Rectangle.client.vue +78 -37
- package/layers/shader/app/components/Pipeline/ReinhardTonemap.client.vue +12 -14
- package/layers/shader/app/components/Pipeline/RidgedNoise.client.vue +54 -31
- package/layers/shader/app/components/Pipeline/Ring.client.vue +69 -34
- package/layers/shader/app/components/Pipeline/RingField.client.vue +63 -43
- package/layers/shader/app/components/Pipeline/RisographGrain.client.vue +66 -32
- package/layers/shader/app/components/Pipeline/RotatedGradientBlend.client.vue +73 -48
- package/layers/shader/app/components/Pipeline/SDFColourMask.client.vue +31 -25
- package/layers/shader/app/components/Pipeline/SDFRadialMask.client.vue +31 -21
- package/layers/shader/app/components/Pipeline/SRGBToLinear.client.vue +25 -20
- package/layers/shader/app/components/Pipeline/Saturation.client.vue +22 -16
- package/layers/shader/app/components/Pipeline/Scanlines.client.vue +42 -26
- package/layers/shader/app/components/Pipeline/ScreenBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/ShaderDebugger.client.vue +58 -45
- package/layers/shader/app/components/Pipeline/SimplexNoise.client.vue +59 -37
- package/layers/shader/app/components/Pipeline/SkyAtmosphere.client.vue +87 -54
- package/layers/shader/app/components/Pipeline/SoftLightBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/SolidColour.client.vue +24 -16
- package/layers/shader/app/components/Pipeline/SplitTone.client.vue +58 -34
- package/layers/shader/app/components/Pipeline/Star.client.vue +73 -37
- package/layers/shader/app/components/Pipeline/Starfield.client.vue +68 -34
- package/layers/shader/app/components/Pipeline/Stripes.client.vue +64 -36
- package/layers/shader/app/components/Pipeline/SubtractBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/TanhTonemap.client.vue +25 -19
- package/layers/shader/app/components/Pipeline/Threshold.client.vue +23 -17
- package/layers/shader/app/components/Pipeline/Tint.client.vue +36 -25
- package/layers/shader/app/components/Pipeline/Triangle.client.vue +54 -31
- package/layers/shader/app/components/Pipeline/UVAspectCorrect.client.vue +5 -10
- package/layers/shader/app/components/Pipeline/UVBreath.client.vue +44 -31
- package/layers/shader/app/components/Pipeline/UVBulge.client.vue +35 -21
- package/layers/shader/app/components/Pipeline/UVClamp.client.vue +14 -14
- package/layers/shader/app/components/Pipeline/UVColumnOffset.client.vue +36 -23
- package/layers/shader/app/components/Pipeline/UVFlipX.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVFlipXY.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVFlipY.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVFractBand.client.vue +31 -21
- package/layers/shader/app/components/Pipeline/UVMousePull.client.vue +41 -33
- package/layers/shader/app/components/Pipeline/UVNoiseRotate.client.vue +65 -46
- package/layers/shader/app/components/Pipeline/UVNoiseWarp.client.vue +49 -30
- package/layers/shader/app/components/Pipeline/UVOrbit.client.vue +37 -29
- package/layers/shader/app/components/Pipeline/UVParallax.client.vue +41 -33
- package/layers/shader/app/components/Pipeline/UVPixelate.client.vue +21 -16
- package/layers/shader/app/components/Pipeline/UVPulse.client.vue +41 -28
- package/layers/shader/app/components/Pipeline/UVRipple.client.vue +53 -29
- package/layers/shader/app/components/Pipeline/UVRotate.client.vue +40 -32
- package/layers/shader/app/components/Pipeline/UVScale.client.vue +33 -25
- package/layers/shader/app/components/Pipeline/UVScroll.client.vue +26 -22
- package/layers/shader/app/components/Pipeline/UVScrollX.client.vue +20 -16
- package/layers/shader/app/components/Pipeline/UVScrollY.client.vue +20 -16
- package/layers/shader/app/components/Pipeline/UVShear.client.vue +33 -20
- package/layers/shader/app/components/Pipeline/UVSineWarpXY.client.vue +58 -40
- package/layers/shader/app/components/Pipeline/UVSwapAxes.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVTile.client.vue +26 -22
- package/layers/shader/app/components/Pipeline/UVTwirl.client.vue +31 -21
- package/layers/shader/app/components/Pipeline/UVWarp.client.vue +44 -25
- package/layers/shader/app/components/Pipeline/VHSBleed.client.vue +63 -43
- package/layers/shader/app/components/Pipeline/ValueNoise.client.vue +57 -32
- package/layers/shader/app/components/Pipeline/Vibrance.client.vue +25 -19
- package/layers/shader/app/components/Pipeline/Vignette.client.vue +35 -24
- package/layers/shader/app/components/Pipeline/VoronoiEdges.client.vue +66 -38
- package/layers/shader/app/components/Pipeline/Water.client.vue +78 -39
- package/layers/shader/app/components/Pipeline/WaveBendLayer.client.vue +74 -46
- package/layers/shader/app/components/Pipeline/WaveColourLayer.client.vue +76 -43
- package/layers/shader/app/components/Pipeline/WhiteBalance.client.vue +38 -27
- package/layers/shader/app/components/Pipeline/Wood.client.vue +85 -50
- package/layers/shader/app/components/Preset/Aurora.client.vue +69 -52
- package/layers/shader/app/components/Preset/Flow.client.vue +63 -47
- package/layers/shader/app/components/Preset/GradientMesh.client.vue +63 -47
- package/layers/shader/app/components/Preset/Nebula.client.vue +65 -47
- package/layers/shader/app/components/Preset/Ocean.client.vue +64 -47
- package/layers/shader/app/components/Preset/ThemeAurora.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemeBubble.client.vue +108 -71
- package/layers/shader/app/components/Preset/ThemeFlow.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemeGradient.client.vue +108 -71
- package/layers/shader/app/components/Preset/ThemeLavaLamp.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemePlasma.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemeWave.client.vue +107 -70
- package/layers/shader/app/components/Shader/Background.client.vue +169 -163
- package/layers/shader/app/components/Shader/Debug.vue +45 -40
- package/layers/shader/app/components/Shader/Host.client.vue +120 -121
- package/layers/shader/app/components/Shader/Material.client.vue +42 -36
- package/layers/shader/app/components/Shader/Pipeline.client.vue +55 -46
- package/layers/shader/app/components/Shader/PipelineContext.vue +12 -12
- package/layers/shader/app/components/Shader/Runtime.client.vue +42 -37
- package/layers/shader/app/composables/useAmbientMaterials.ts +316 -105
- package/layers/shader/app/composables/useCSSColourUniform.ts +7 -6
- package/layers/shader/app/composables/useCSSFloatUniform.ts +4 -5
- package/layers/shader/app/composables/useMousePosition.ts +1 -1
- package/layers/shader/app/composables/useShader.ts +5 -3
- package/layers/shader/app/composables/useShaderColor.ts +8 -1
- package/layers/shader/app/composables/useShaderFloat.ts +3 -1
- package/layers/shader/app/composables/useShaderGraph.ts +6 -3
- package/layers/shader/app/composables/useShaderPerf.ts +2 -3
- package/layers/shader/app/composables/useShaderPipeline.ts +14 -6
- package/layers/shader/app/composables/useShaderRuntime.ts +7 -4
- package/layers/shader/app/composables/useShaderVec2.ts +4 -0
- package/layers/shader/app/composables/useSunDirectionUniform.ts +7 -6
- package/layers/shader/app/composables/useTSLNodes.ts +1 -0
- package/layers/shader/app/composables/useThemeColors.ts +14 -10
- package/layers/shader/app/composables/useUniforms.ts +5 -2
- package/layers/shader/app/plugins/shader.client.ts +3 -2
- package/layers/shader/app/shaders/common/blend.ts +3 -0
- package/layers/shader/app/shaders/common/complex.ts +4 -5
- package/layers/shader/app/shaders/common/effects.ts +10 -6
- package/layers/shader/app/shaders/common/grain.ts +4 -0
- package/layers/shader/app/shaders/common/lighting.ts +4 -1
- package/layers/shader/app/shaders/common/math.ts +3 -0
- package/layers/shader/app/shaders/common/noise.ts +7 -4
- package/layers/shader/app/shaders/common/noiseHelpers.ts +2 -0
- package/layers/shader/app/shaders/common/palette.ts +6 -1
- package/layers/shader/app/shaders/common/patterns.ts +7 -4
- package/layers/shader/app/shaders/common/sdf.ts +3 -1
- package/layers/shader/app/shaders/common/shapes.ts +3 -0
- package/layers/shader/app/shaders/common/tonemapping.ts +2 -0
- package/layers/shader/app/shaders/common/uv.ts +8 -1
- package/layers/shader/app/shaders/createMaterial.ts +6 -2
- package/layers/shader/app/shaders/layers/aurora.ts +6 -3
- package/layers/shader/app/shaders/layers/meshGradient.ts +6 -3
- package/layers/shader/app/shaders/layers/paperShading.ts +6 -2
- package/layers/shader/app/shaders/layers/shaderGradient.ts +5 -0
- package/layers/shader/app/shaders/layers/stripe.ts +6 -3
- package/layers/shader/app/shaders/types.ts +1 -0
- package/layers/shader/app/types/app-config.d.ts +1 -1
- package/layers/shader/app/types/index.ts +4 -4
- package/layers/shader/app/types/materials.ts +5 -4
- package/layers/shader/app/types/renderer.ts +1 -50
- package/layers/shader/app/types/tsl.ts +4 -3
- package/layers/shader/app/types/uniforms.ts +3 -2
- package/layers/shader/app/utils/tsl/animation.ts +2 -0
- package/layers/shader/app/utils/tsl/color.ts +5 -2
- package/layers/shader/app/utils/tsl/math.ts +1 -0
- package/layers/shader/app/utils/tsl/noise.ts +2 -0
- package/layers/shader/app/utils/tsl/oklch.ts +2 -0
- package/layers/shader/app/utils/tsl/patterns.ts +2 -0
- package/layers/shader/app/utils/tsl/tween.ts +4 -2
- package/layers/shader/app/utils/tsl/uv.ts +2 -0
- package/layers/shader/nuxt.config.ts +8 -115
- package/layers/shader/package.json +3 -9
- package/layers/theme/app/assets/css/theme.css +2 -2
- package/layers/theme/app/components/ThemePicker/AccentButton.vue +32 -30
- package/layers/theme/app/components/ThemePicker/Colors.vue +6 -5
- package/layers/theme/app/components/ThemePicker/Menu.vue +23 -23
- package/layers/theme/app/composables/useAccentColor.ts +2 -1
- package/layers/theme/app/composables/useThemeContrast.ts +1 -1
- package/layers/theme/app/composables/useThemeMotion.ts +1 -1
- package/layers/theme/app/composables/useThemeTransparency.ts +1 -4
- package/layers/theme/app/plugins/theme.client.ts +33 -15
- package/layers/theme/app/types/app-config.d.ts +3 -2
- package/layers/theme/app/types/theme.ts +1 -1
- package/layers/theme/nuxt.config.ts +4 -1
- package/layers/transitions/app/components/Motion/Transition.vue +76 -0
- package/layers/transitions/nuxt.config.ts +19 -0
- package/layers/transitions/package.json +6 -0
- package/layers/transitions/tsconfig.json +7 -0
- package/layers/typography/app/components/Typography/CodeBlock.vue +44 -0
- package/layers/typography/app/components/Typography/Headline.vue +90 -0
- package/layers/typography/app/components/Typography/HeadlineScreen.vue +75 -0
- package/layers/typography/app/components/Typography/QuoteBlock.vue +21 -0
- package/layers/{ui → typography}/app/components/Typography/TextStroke.vue +33 -32
- package/layers/typography/app/components/Typography/index.vue +54 -0
- package/layers/{ui → typography}/app/composables/typography.ts +1 -0
- package/layers/{ui → typography}/app/types/typography.ts +1 -1
- package/layers/typography/nuxt.config.ts +17 -0
- package/layers/typography/package.json +6 -0
- package/layers/typography/tsconfig.json +7 -0
- package/layers/ui/app/assets/css/ui.css +0 -20
- package/layers/ui/app/layouts/default.vue +2 -12
- package/layers/ui/nuxt.config.ts +5 -21
- package/layers/visual/app/app.config.ts +115 -0
- package/layers/visual/app/assets/css/visual.css +15 -0
- package/layers/visual/app/components/Accent/Blob.vue +32 -0
- package/layers/{ui → visual}/app/components/Accent/Scene.vue +26 -23
- package/layers/visual/app/components/Base/Modal.vue +123 -0
- package/layers/visual/app/components/Gradient/Background.vue +24 -0
- package/layers/visual/app/components/Gradient/Text.vue +24 -0
- package/layers/visual/app/components/Media/Picture.vue +51 -0
- package/layers/visual/app/components/Progress/Bar.vue +36 -0
- package/layers/{ui → visual}/app/components/Progress/Circular.vue +26 -25
- package/layers/visual/app/components/Tint/Overlay.vue +27 -0
- package/layers/{ui → visual}/app/composables/accent.ts +1 -0
- package/layers/{ui → visual}/app/composables/gradient.ts +3 -0
- package/layers/{ui → visual}/app/composables/picture.ts +2 -0
- package/layers/{ui → visual}/app/composables/tint.ts +3 -2
- package/layers/{ui → visual}/app/types/accent.ts +2 -2
- package/layers/{ui → visual}/app/types/gradient.ts +2 -2
- package/layers/{ui → visual}/app/types/media.ts +4 -3
- package/layers/{ui → visual}/app/types/tint.ts +1 -1
- package/layers/visual/nuxt.config.ts +19 -0
- package/layers/visual/package.json +6 -0
- package/layers/visual/tsconfig.json +7 -0
- package/package.json +29 -4
- package/layers/motion/app/app.config.ts +0 -27
- package/layers/motion/app/components/Motion/HorizontalScroll.vue +0 -61
- package/layers/motion/app/components/Motion/Parallax.vue +0 -75
- package/layers/motion/app/components/Motion/PinnedSection.vue +0 -77
- package/layers/motion/app/components/Motion/ScrollLink.vue +0 -49
- package/layers/motion/app/components/Motion/ScrollProgress.vue +0 -82
- package/layers/motion/app/components/Motion/ScrollScene.vue +0 -121
- package/layers/motion/app/components/Motion/ScrollStep.vue +0 -45
- package/layers/motion/app/components/Motion/Transition.vue +0 -76
- package/layers/shader/app/components/Shader/Canvas.vue +0 -121
- package/layers/ui/app/app.config.ts +0 -57
- package/layers/ui/app/components/Accent/Blob.vue +0 -29
- package/layers/ui/app/components/Base/Modal.vue +0 -111
- package/layers/ui/app/components/Gradient/Background.vue +0 -22
- package/layers/ui/app/components/Gradient/Text.vue +0 -22
- package/layers/ui/app/components/Links/Group.vue +0 -47
- package/layers/ui/app/components/Links/Named.vue +0 -31
- package/layers/ui/app/components/Mast/Footer.vue +0 -15
- package/layers/ui/app/components/Mast/NavModal.vue +0 -72
- package/layers/ui/app/components/Media/Picture.vue +0 -50
- package/layers/ui/app/components/Progress/Bar.vue +0 -35
- package/layers/ui/app/components/Tint/Overlay.vue +0 -25
- package/layers/ui/app/components/Typography/CodeBlock.vue +0 -42
- package/layers/ui/app/components/Typography/Headline.vue +0 -88
- package/layers/ui/app/components/Typography/HeadlineScreen.vue +0 -77
- package/layers/ui/app/components/Typography/QuoteBlock.vue +0 -20
- package/layers/ui/app/components/Typography/index.vue +0 -52
- package/layers/ui/app/types/app-config.d.ts +0 -22
- package/layers/ui/app/types/nav.ts +0 -5
- /package/layers/{motion → animations}/app/components/Motion/CountUp.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Cursor.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Magnetic.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Marquee.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/MarqueeText.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Staggered.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/TextReveal.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Tilt.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/VelocityEffect.vue +0 -0
- /package/layers/{motion → animations}/app/composables/useCountUp.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useCursorFollower.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useMagneticElement.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useMarqueeCopies.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useMarqueeVelocity.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useTiltEffect.ts +0 -0
- /package/layers/{ui → navigation}/app/components/Mast/Main.vue +0 -0
- /package/layers/{ui → navigation}/app/components/Site/Subtitle.vue +0 -0
- /package/layers/{ui → navigation}/app/components/Site/Title.vue +0 -0
- /package/layers/{ui → navigation}/app/utils/regex.ts +0 -0
- /package/layers/{motion/app/assets/css/motion.css → transitions/app/assets/css/transitions.css} +0 -0
- /package/layers/{ui → typography}/app/composables/color.ts +0 -0
- /package/layers/{ui → typography}/app/types/colors.ts +0 -0
- /package/layers/{ui → visual}/app/types/breakpoints.ts +0 -0
|
@@ -1,24 +1,38 @@
|
|
|
1
|
+
<!-- eslint-disable vue/define-props-destructuring -->
|
|
2
|
+
<!-- eslint-disable @typescript-eslint/ban-ts-comment -->
|
|
1
3
|
<script setup lang="ts">
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import { Color } from 'three'
|
|
4
|
-
import { mix, uniform, vec4 } from 'three/tsl'
|
|
5
|
-
import { blendScreen } from '../../shaders/common/blend'
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { Color } from 'three'
|
|
6
|
+
import { mix, uniform, vec4 } from 'three/tsl'
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
color?: string
|
|
9
|
-
opacity?: number
|
|
10
|
-
order?: number
|
|
11
|
-
}>(), { color: '#808080', opacity: 1, order: 0 })
|
|
8
|
+
import { blendScreen } from '../../shaders/common/blend'
|
|
12
9
|
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
const props = withDefaults(
|
|
11
|
+
defineProps<{
|
|
12
|
+
color?: string
|
|
13
|
+
opacity?: number
|
|
14
|
+
order?: number
|
|
15
|
+
}>(),
|
|
16
|
+
{ color: '#808080', opacity: 1, order: 0 }
|
|
17
|
+
)
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
)
|
|
22
|
-
|
|
19
|
+
const colorNode = uniform(new Color(props.color))
|
|
20
|
+
const opacityNode = uniform(props.opacity)
|
|
21
|
+
watch(
|
|
22
|
+
() => props.color,
|
|
23
|
+
(v) => {
|
|
24
|
+
colorNode.value.set(v)
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
watch(
|
|
28
|
+
() => props.opacity,
|
|
29
|
+
(v) => {
|
|
30
|
+
opacityNode.value = v
|
|
31
|
+
}
|
|
32
|
+
)
|
|
23
33
|
|
|
24
|
-
|
|
34
|
+
useShaderStage(
|
|
35
|
+
(prev) => vec4(mix(prev.xyz, blendScreen(prev.xyz, colorNode), opacityNode), prev.w),
|
|
36
|
+
props.order
|
|
37
|
+
)
|
|
38
|
+
</script>
|
|
@@ -1,42 +1,62 @@
|
|
|
1
|
+
<!-- eslint-disable @typescript-eslint/no-unused-vars -->
|
|
2
|
+
<!-- eslint-disable vue/define-props-destructuring -->
|
|
3
|
+
<!-- eslint-disable @typescript-eslint/ban-ts-comment -->
|
|
1
4
|
<script setup lang="ts">
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import {
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
import { float, floor, fract, uniform, vec3, vec4 } from 'three/tsl'
|
|
4
7
|
|
|
5
|
-
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const props = withDefaults(
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
8
|
+
/**
|
|
9
|
+
* ShaderDebugger — dev-only visualization overlay for inspecting pipeline state.
|
|
10
|
+
*
|
|
11
|
+
* Modes:
|
|
12
|
+
* 'uv' — displays UV coordinates as red/green channels
|
|
13
|
+
* 'normal' — encodes normal-space UV as blue hue sweep
|
|
14
|
+
* 'grid' — overlays a reference grid on the current output
|
|
15
|
+
* 'pass' — passes through unchanged (no-op, useful for toggling off)
|
|
16
|
+
*
|
|
17
|
+
* Drop this at any `order` value to inspect that point in the pipeline.
|
|
18
|
+
* Only renders in development — remove from production compositions.
|
|
19
|
+
*/
|
|
20
|
+
const props = withDefaults(
|
|
21
|
+
defineProps<{
|
|
22
|
+
/** Visualization mode */
|
|
23
|
+
mode?: 'uv' | 'normal' | 'grid' | 'pass'
|
|
24
|
+
/** Grid line count (grid mode) */
|
|
25
|
+
gridLines?: number
|
|
26
|
+
/** Grid line thickness */
|
|
27
|
+
gridThickness?: number
|
|
28
|
+
/** Blend with original output (0 = full debug, 1 = full original) */
|
|
29
|
+
blend?: number
|
|
30
|
+
order?: number
|
|
31
|
+
}>(),
|
|
32
|
+
{ mode: 'uv', gridLines: 10, gridThickness: 0.02, blend: 0, order: 0 }
|
|
33
|
+
)
|
|
28
34
|
|
|
29
|
-
const gridLinesNode = uniform(props.gridLines)
|
|
30
|
-
const gridThickNode = uniform(props.gridThickness)
|
|
31
|
-
const blendNode = uniform(props.blend)
|
|
32
|
-
watch(
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
const gridLinesNode = uniform(props.gridLines)
|
|
36
|
+
const gridThickNode = uniform(props.gridThickness)
|
|
37
|
+
const blendNode = uniform(props.blend)
|
|
38
|
+
watch(
|
|
39
|
+
() => props.gridLines,
|
|
40
|
+
(v) => {
|
|
41
|
+
gridLinesNode.value = v
|
|
42
|
+
}
|
|
43
|
+
)
|
|
44
|
+
watch(
|
|
45
|
+
() => props.gridThickness,
|
|
46
|
+
(v) => {
|
|
47
|
+
gridThickNode.value = v
|
|
48
|
+
}
|
|
49
|
+
)
|
|
50
|
+
watch(
|
|
51
|
+
() => props.blend,
|
|
52
|
+
(v) => {
|
|
53
|
+
blendNode.value = v
|
|
54
|
+
}
|
|
55
|
+
)
|
|
35
56
|
|
|
36
|
-
const pipeline = useShaderPipelineContext()
|
|
57
|
+
const pipeline = useShaderPipelineContext()
|
|
37
58
|
|
|
38
|
-
useShaderStage(
|
|
39
|
-
(prev) => {
|
|
59
|
+
useShaderStage((prev) => {
|
|
40
60
|
const uv = pipeline.uvNode.value
|
|
41
61
|
|
|
42
62
|
let debugColour
|
|
@@ -44,13 +64,11 @@ useShaderStage(
|
|
|
44
64
|
if (props.mode === 'uv') {
|
|
45
65
|
// Red = U, Green = V, Blue = 0
|
|
46
66
|
debugColour = vec3(uv.x, uv.y, float(0))
|
|
47
|
-
}
|
|
48
|
-
else if (props.mode === 'normal') {
|
|
67
|
+
} else if (props.mode === 'normal') {
|
|
49
68
|
// Encodes centered UV — negative values become blue tones
|
|
50
69
|
const centered = uv.sub(0.5)
|
|
51
70
|
debugColour = vec3(centered.x.add(0.5), centered.y.add(0.5), float(0.5))
|
|
52
|
-
}
|
|
53
|
-
else if (props.mode === 'grid') {
|
|
71
|
+
} else if (props.mode === 'grid') {
|
|
54
72
|
// Grid lines via fract — line at every 1/gridLines interval
|
|
55
73
|
const scaled = uv.mul(gridLinesNode)
|
|
56
74
|
const fx = fract(scaled.x)
|
|
@@ -59,16 +77,11 @@ useShaderStage(
|
|
|
59
77
|
const lineY = float(1).sub(fy.smoothstep(gridThickNode, float(0)))
|
|
60
78
|
const line = lineX.max(lineY)
|
|
61
79
|
debugColour = prev.xyz.mul(float(1).sub(line)).add(vec3(line, line.mul(0.5), float(0)))
|
|
62
|
-
}
|
|
63
|
-
else {
|
|
80
|
+
} else {
|
|
64
81
|
// pass — no-op
|
|
65
82
|
debugColour = prev.xyz
|
|
66
83
|
}
|
|
67
84
|
|
|
68
85
|
return vec4(prev.xyz.mix(debugColour, float(1).sub(blendNode)), prev.w)
|
|
69
|
-
},
|
|
70
|
-
props.order,
|
|
71
|
-
)
|
|
86
|
+
}, props.order)
|
|
72
87
|
</script>
|
|
73
|
-
|
|
74
|
-
<template><!-- --></template>
|
|
@@ -1,49 +1,71 @@
|
|
|
1
|
+
<!-- eslint-disable vue/no-boolean-default -->
|
|
2
|
+
<!-- eslint-disable vue/define-props-destructuring -->
|
|
3
|
+
<!-- eslint-disable @typescript-eslint/ban-ts-comment -->
|
|
1
4
|
<script setup lang="ts">
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import { Color } from 'three'
|
|
4
|
-
import { float, mix, time, uniform, vec2, vec4 } from 'three/tsl'
|
|
5
|
-
import { simplexNoise2D } from '../../shaders/common/noise'
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
import { Color } from 'three'
|
|
7
|
+
import { float, mix, time, uniform, vec2, vec4 } from 'three/tsl'
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
colorA?: string
|
|
9
|
-
colorB?: string
|
|
10
|
-
scale?: number
|
|
11
|
-
animated?: boolean
|
|
12
|
-
speed?: number
|
|
13
|
-
order?: number
|
|
14
|
-
}>(), {
|
|
15
|
-
colorA: '#000000',
|
|
16
|
-
colorB: '#ffffff',
|
|
17
|
-
scale: 3,
|
|
18
|
-
animated: true,
|
|
19
|
-
speed: 0.3,
|
|
20
|
-
order: 0,
|
|
21
|
-
})
|
|
9
|
+
import { simplexNoise2D } from '../../shaders/common/noise'
|
|
22
10
|
|
|
23
|
-
const
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
11
|
+
const props = withDefaults(
|
|
12
|
+
defineProps<{
|
|
13
|
+
colorA?: string
|
|
14
|
+
colorB?: string
|
|
15
|
+
scale?: number
|
|
16
|
+
animated?: boolean
|
|
17
|
+
speed?: number
|
|
18
|
+
order?: number
|
|
19
|
+
}>(),
|
|
20
|
+
{
|
|
21
|
+
colorA: '#000000',
|
|
22
|
+
colorB: '#ffffff',
|
|
23
|
+
scale: 3,
|
|
24
|
+
animated: true,
|
|
25
|
+
speed: 0.3,
|
|
26
|
+
order: 0,
|
|
27
|
+
}
|
|
28
|
+
)
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
const colorAVal = new Color(props.colorA)
|
|
31
|
+
const colorBVal = new Color(props.colorB)
|
|
32
|
+
const colorANode = uniform(colorAVal)
|
|
33
|
+
const colorBNode = uniform(colorBVal)
|
|
34
|
+
const scaleNode = uniform(props.scale)
|
|
35
|
+
const speedNode = uniform(props.speed)
|
|
34
36
|
|
|
35
|
-
|
|
37
|
+
watch(
|
|
38
|
+
() => props.colorA,
|
|
39
|
+
(v) => {
|
|
40
|
+
colorANode.value.set(v)
|
|
41
|
+
}
|
|
42
|
+
)
|
|
43
|
+
watch(
|
|
44
|
+
() => props.colorB,
|
|
45
|
+
(v) => {
|
|
46
|
+
colorBNode.value.set(v)
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
watch(
|
|
50
|
+
() => props.scale,
|
|
51
|
+
(v) => {
|
|
52
|
+
scaleNode.value = v
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
watch(
|
|
56
|
+
() => props.speed,
|
|
57
|
+
(v) => {
|
|
58
|
+
speedNode.value = v
|
|
59
|
+
}
|
|
60
|
+
)
|
|
36
61
|
|
|
37
|
-
|
|
38
|
-
|
|
62
|
+
const { uvNode } = useShaderPipelineContext()
|
|
63
|
+
|
|
64
|
+
useShaderStage((_prev) => {
|
|
39
65
|
// Scroll UV over time to animate noise (cheaper than 3D noise)
|
|
40
66
|
const offset = props.animated ? time.mul(speedNode) : float(0)
|
|
41
67
|
const input = uvNode.value.mul(scaleNode).add(vec2(offset, 0))
|
|
42
68
|
const n = simplexNoise2D(input).mul(0.5).add(0.5)
|
|
43
69
|
return vec4(mix(colorANode, colorBNode, n), 1.0)
|
|
44
|
-
},
|
|
45
|
-
props.order,
|
|
46
|
-
)
|
|
70
|
+
}, props.order)
|
|
47
71
|
</script>
|
|
48
|
-
|
|
49
|
-
<template><!-- --></template>
|
|
@@ -1,60 +1,97 @@
|
|
|
1
|
+
<!-- eslint-disable @typescript-eslint/no-unused-vars -->
|
|
2
|
+
<!-- eslint-disable vue/define-props-destructuring -->
|
|
3
|
+
<!-- eslint-disable @typescript-eslint/ban-ts-comment -->
|
|
1
4
|
<script setup lang="ts">
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import { Color, Vector3 } from 'three'
|
|
4
|
-
import {
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
import { Color, Vector3 } from 'three'
|
|
7
|
+
import { clamp, dot, float, mix, pow, uniform, vec3, vec4 } from 'three/tsl'
|
|
5
8
|
|
|
6
|
-
const props = withDefaults(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
9
|
+
const props = withDefaults(
|
|
10
|
+
defineProps<{
|
|
11
|
+
/** Sky colour at the zenith */
|
|
12
|
+
zenith?: string
|
|
13
|
+
/** Sky colour at the horizon */
|
|
14
|
+
horizon?: string
|
|
15
|
+
/** Ground colour below horizon */
|
|
16
|
+
ground?: string
|
|
17
|
+
/** Sun direction — [x, y, z] world space (will be normalised) */
|
|
18
|
+
sunDirection?: [number, number, number]
|
|
19
|
+
/** Sun colour */
|
|
20
|
+
sunColor?: string
|
|
21
|
+
/** Sun disk sharpness (higher = smaller disk) */
|
|
22
|
+
sunPower?: number
|
|
23
|
+
order?: number
|
|
24
|
+
}>(),
|
|
25
|
+
{
|
|
26
|
+
zenith: '#1a3a8a',
|
|
27
|
+
horizon: '#7ab0d8',
|
|
28
|
+
ground: '#5a4a3a',
|
|
29
|
+
sunDirection: () => [0.3, 0.8, 0.5],
|
|
30
|
+
sunColor: '#fff8e0',
|
|
31
|
+
sunPower: 512,
|
|
32
|
+
order: 0,
|
|
33
|
+
}
|
|
34
|
+
)
|
|
29
35
|
|
|
30
|
-
function toVec3Node(hex: string) {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
36
|
+
function toVec3Node(hex: string) {
|
|
37
|
+
const c = new Color(hex)
|
|
38
|
+
return uniform(new Vector3(c.r, c.g, c.b))
|
|
39
|
+
}
|
|
34
40
|
|
|
35
|
-
const zenithNode = toVec3Node(props.zenith)
|
|
36
|
-
const horizonNode = toVec3Node(props.horizon)
|
|
37
|
-
const groundNode = toVec3Node(props.ground)
|
|
38
|
-
const sunColorNode = toVec3Node(props.sunColor)
|
|
39
|
-
const sunPowerNode = uniform(props.sunPower)
|
|
41
|
+
const zenithNode = toVec3Node(props.zenith)
|
|
42
|
+
const horizonNode = toVec3Node(props.horizon)
|
|
43
|
+
const groundNode = toVec3Node(props.ground)
|
|
44
|
+
const sunColorNode = toVec3Node(props.sunColor)
|
|
45
|
+
const sunPowerNode = uniform(props.sunPower)
|
|
40
46
|
|
|
41
|
-
const sunDir = new Vector3(...props.sunDirection).normalize()
|
|
42
|
-
const sunDirNode = uniform(new Vector3(sunDir.x, sunDir.y, sunDir.z))
|
|
47
|
+
const sunDir = new Vector3(...props.sunDirection).normalize()
|
|
48
|
+
const sunDirNode = uniform(new Vector3(sunDir.x, sunDir.y, sunDir.z))
|
|
43
49
|
|
|
44
|
-
watch(
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
watch(
|
|
51
|
+
() => props.zenith,
|
|
52
|
+
(v) => {
|
|
53
|
+
const c = new Color(v)
|
|
54
|
+
zenithNode.value.set(c.r, c.g, c.b)
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
watch(
|
|
58
|
+
() => props.horizon,
|
|
59
|
+
(v) => {
|
|
60
|
+
const c = new Color(v)
|
|
61
|
+
horizonNode.value.set(c.r, c.g, c.b)
|
|
62
|
+
}
|
|
63
|
+
)
|
|
64
|
+
watch(
|
|
65
|
+
() => props.ground,
|
|
66
|
+
(v) => {
|
|
67
|
+
const c = new Color(v)
|
|
68
|
+
groundNode.value.set(c.r, c.g, c.b)
|
|
69
|
+
}
|
|
70
|
+
)
|
|
71
|
+
watch(
|
|
72
|
+
() => props.sunColor,
|
|
73
|
+
(v) => {
|
|
74
|
+
const c = new Color(v)
|
|
75
|
+
sunColorNode.value.set(c.r, c.g, c.b)
|
|
76
|
+
}
|
|
77
|
+
)
|
|
78
|
+
watch(
|
|
79
|
+
() => props.sunPower,
|
|
80
|
+
(v) => {
|
|
81
|
+
sunPowerNode.value = v
|
|
82
|
+
}
|
|
83
|
+
)
|
|
84
|
+
watch(
|
|
85
|
+
() => props.sunDirection,
|
|
86
|
+
([x, y, z]) => {
|
|
87
|
+
const d = new Vector3(x, y, z).normalize()
|
|
88
|
+
sunDirNode.value.set(d.x, d.y, d.z)
|
|
89
|
+
}
|
|
90
|
+
)
|
|
53
91
|
|
|
54
|
-
const pipeline = useShaderPipelineContext()
|
|
92
|
+
const pipeline = useShaderPipelineContext()
|
|
55
93
|
|
|
56
|
-
useShaderStage(
|
|
57
|
-
() => {
|
|
94
|
+
useShaderStage(() => {
|
|
58
95
|
const ray = pipeline.rayNode.value
|
|
59
96
|
|
|
60
97
|
// Sky gradient: -1..+1 on Y → ground..zenith
|
|
@@ -67,9 +104,5 @@ useShaderStage(
|
|
|
67
104
|
const sun = sunColorNode.mul(pow(sunDot, sunPowerNode))
|
|
68
105
|
|
|
69
106
|
return vec4(colour.add(sun), 1.0)
|
|
70
|
-
},
|
|
71
|
-
props.order,
|
|
72
|
-
)
|
|
107
|
+
}, props.order)
|
|
73
108
|
</script>
|
|
74
|
-
|
|
75
|
-
<template><!-- --></template>
|
|
@@ -1,24 +1,38 @@
|
|
|
1
|
+
<!-- eslint-disable vue/define-props-destructuring -->
|
|
2
|
+
<!-- eslint-disable @typescript-eslint/ban-ts-comment -->
|
|
1
3
|
<script setup lang="ts">
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import { Color } from 'three'
|
|
4
|
-
import { mix, uniform, vec4 } from 'three/tsl'
|
|
5
|
-
import { blendSoftLight } from '../../shaders/common/blend'
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { Color } from 'three'
|
|
6
|
+
import { mix, uniform, vec4 } from 'three/tsl'
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
color?: string
|
|
9
|
-
opacity?: number
|
|
10
|
-
order?: number
|
|
11
|
-
}>(), { color: '#808080', opacity: 1, order: 0 })
|
|
8
|
+
import { blendSoftLight } from '../../shaders/common/blend'
|
|
12
9
|
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
const props = withDefaults(
|
|
11
|
+
defineProps<{
|
|
12
|
+
color?: string
|
|
13
|
+
opacity?: number
|
|
14
|
+
order?: number
|
|
15
|
+
}>(),
|
|
16
|
+
{ color: '#808080', opacity: 1, order: 0 }
|
|
17
|
+
)
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
)
|
|
22
|
-
|
|
19
|
+
const colorNode = uniform(new Color(props.color))
|
|
20
|
+
const opacityNode = uniform(props.opacity)
|
|
21
|
+
watch(
|
|
22
|
+
() => props.color,
|
|
23
|
+
(v) => {
|
|
24
|
+
colorNode.value.set(v)
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
watch(
|
|
28
|
+
() => props.opacity,
|
|
29
|
+
(v) => {
|
|
30
|
+
opacityNode.value = v
|
|
31
|
+
}
|
|
32
|
+
)
|
|
23
33
|
|
|
24
|
-
|
|
34
|
+
useShaderStage(
|
|
35
|
+
(prev) => vec4(mix(prev.xyz, blendSoftLight(prev.xyz, colorNode), opacityNode), prev.w),
|
|
36
|
+
props.order
|
|
37
|
+
)
|
|
38
|
+
</script>
|
|
@@ -1,21 +1,29 @@
|
|
|
1
|
+
<!-- eslint-disable vue/define-props-destructuring -->
|
|
2
|
+
<!-- eslint-disable @typescript-eslint/ban-ts-comment -->
|
|
1
3
|
<script setup lang="ts">
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import { Color } from 'three'
|
|
4
|
-
import { uniform, vec4 } from 'three/tsl'
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { Color } from 'three'
|
|
6
|
+
import { uniform, vec4 } from 'three/tsl'
|
|
5
7
|
|
|
6
|
-
const props = withDefaults(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
const props = withDefaults(
|
|
9
|
+
defineProps<{
|
|
10
|
+
color?: string
|
|
11
|
+
order?: number
|
|
12
|
+
}>(),
|
|
13
|
+
{
|
|
14
|
+
color: '#ffffff',
|
|
15
|
+
order: 0,
|
|
16
|
+
}
|
|
17
|
+
)
|
|
13
18
|
|
|
14
|
-
const colorVal = new Color(props.color)
|
|
15
|
-
const colorNode = uniform(colorVal)
|
|
16
|
-
watch(
|
|
19
|
+
const colorVal = new Color(props.color)
|
|
20
|
+
const colorNode = uniform(colorVal)
|
|
21
|
+
watch(
|
|
22
|
+
() => props.color,
|
|
23
|
+
(v) => {
|
|
24
|
+
colorNode.value.set(v)
|
|
25
|
+
}
|
|
26
|
+
)
|
|
17
27
|
|
|
18
|
-
useShaderStage((_prev) => vec4(colorNode, 1.0), props.order)
|
|
28
|
+
useShaderStage((_prev) => vec4(colorNode, 1.0), props.order)
|
|
19
29
|
</script>
|
|
20
|
-
|
|
21
|
-
<template><!-- --></template>
|
|
@@ -1,37 +1,65 @@
|
|
|
1
|
+
<!-- eslint-disable @typescript-eslint/no-unused-vars -->
|
|
2
|
+
<!-- eslint-disable vue/define-props-destructuring -->
|
|
3
|
+
<!-- eslint-disable @typescript-eslint/ban-ts-comment -->
|
|
1
4
|
<script setup lang="ts">
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import { Color, Vector3 } from 'three'
|
|
4
|
-
import {
|
|
5
|
-
import { luminance } from '../../shaders/common/blend'
|
|
5
|
+
// @ts-nocheck
|
|
6
|
+
import { Color, Vector3 } from 'three'
|
|
7
|
+
import { float, mix, smoothstep, uniform, vec4 } from 'three/tsl'
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
/** Colour pushed into shadow tones */
|
|
9
|
-
shadowColor?: string
|
|
10
|
-
/** Colour pushed into highlight tones */
|
|
11
|
-
highlightColor?: string
|
|
12
|
-
/** Balance point: 0.5 = even split, lower = shadows dominate */
|
|
13
|
-
balance?: number
|
|
14
|
-
/** Overall blend strength */
|
|
15
|
-
opacity?: number
|
|
16
|
-
order?: number
|
|
17
|
-
}>(), { shadowColor: '#1a2a5a', highlightColor: '#ffeecc', balance: 0.5, opacity: 0.5, order: 0 })
|
|
9
|
+
import { luminance } from '../../shaders/common/blend'
|
|
18
10
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
11
|
+
const props = withDefaults(
|
|
12
|
+
defineProps<{
|
|
13
|
+
/** Colour pushed into shadow tones */
|
|
14
|
+
shadowColor?: string
|
|
15
|
+
/** Colour pushed into highlight tones */
|
|
16
|
+
highlightColor?: string
|
|
17
|
+
/** Balance point: 0.5 = even split, lower = shadows dominate */
|
|
18
|
+
balance?: number
|
|
19
|
+
/** Overall blend strength */
|
|
20
|
+
opacity?: number
|
|
21
|
+
order?: number
|
|
22
|
+
}>(),
|
|
23
|
+
{ shadowColor: '#1a2a5a', highlightColor: '#ffeecc', balance: 0.5, opacity: 0.5, order: 0 }
|
|
24
|
+
)
|
|
23
25
|
|
|
24
|
-
|
|
25
|
-
const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
watch(() => props.shadowColor, v => { const c = new Color(v); shadowNode.value.set(c.r, c.g, c.b) })
|
|
29
|
-
watch(() => props.highlightColor, v => { const c = new Color(v); highlightNode.value.set(c.r, c.g, c.b) })
|
|
30
|
-
watch(() => props.balance, v => { balanceNode.value = v })
|
|
31
|
-
watch(() => props.opacity, v => { opacityNode.value = v })
|
|
26
|
+
function toVec3Node(hex: string) {
|
|
27
|
+
const c = new Color(hex)
|
|
28
|
+
return uniform(new Vector3(c.r, c.g, c.b))
|
|
29
|
+
}
|
|
32
30
|
|
|
33
|
-
|
|
34
|
-
(
|
|
31
|
+
const shadowNode = toVec3Node(props.shadowColor)
|
|
32
|
+
const highlightNode = toVec3Node(props.highlightColor)
|
|
33
|
+
const balanceNode = uniform(props.balance)
|
|
34
|
+
const opacityNode = uniform(props.opacity)
|
|
35
|
+
watch(
|
|
36
|
+
() => props.shadowColor,
|
|
37
|
+
(v) => {
|
|
38
|
+
const c = new Color(v)
|
|
39
|
+
shadowNode.value.set(c.r, c.g, c.b)
|
|
40
|
+
}
|
|
41
|
+
)
|
|
42
|
+
watch(
|
|
43
|
+
() => props.highlightColor,
|
|
44
|
+
(v) => {
|
|
45
|
+
const c = new Color(v)
|
|
46
|
+
highlightNode.value.set(c.r, c.g, c.b)
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
watch(
|
|
50
|
+
() => props.balance,
|
|
51
|
+
(v) => {
|
|
52
|
+
balanceNode.value = v
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
watch(
|
|
56
|
+
() => props.opacity,
|
|
57
|
+
(v) => {
|
|
58
|
+
opacityNode.value = v
|
|
59
|
+
}
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
useShaderStage((prev) => {
|
|
35
63
|
const lum = luminance(prev.xyz)
|
|
36
64
|
const shadowMask = smoothstep(balanceNode, float(0), lum)
|
|
37
65
|
const highlightMask = smoothstep(balanceNode, float(1), lum)
|
|
@@ -39,9 +67,5 @@ useShaderStage(
|
|
|
39
67
|
.add(shadowNode.mul(shadowMask).mul(opacityNode))
|
|
40
68
|
.add(highlightNode.mul(highlightMask).mul(opacityNode))
|
|
41
69
|
return vec4(toned, prev.w)
|
|
42
|
-
},
|
|
43
|
-
props.order,
|
|
44
|
-
)
|
|
70
|
+
}, props.order)
|
|
45
71
|
</script>
|
|
46
|
-
|
|
47
|
-
<template><!-- --></template>
|