From 39111fc5717b83db87ab7cc11ce831a4c26d836b Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 22 Apr 2026 16:12:20 +0200 Subject: [PATCH] auto-git: [change] src/rendering/world-shader-sky.ts --- src/rendering/world-shader-sky.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/rendering/world-shader-sky.ts b/src/rendering/world-shader-sky.ts index 944860e1..87983341 100644 --- a/src/rendering/world-shader-sky.ts +++ b/src/rendering/world-shader-sky.ts @@ -138,7 +138,10 @@ function normalizeDirection(direction: Vec3, fallback: Vec3): Vec3 { }; } -function offsetDirectionForHorizon(direction: Vec3, horizonHeight: number): Vec3 { +function offsetDirectionForHorizon( + direction: Vec3, + horizonHeight: number +): Vec3 { if (Math.abs(horizonHeight) <= 1e-6) { return direction; }