Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
ibesora committed Oct 31, 2024
1 parent 78d11d2 commit 6ba22fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render/program/sky_program.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const skyUniformValues = (sky: Sky, transform: IReadonlyTransform, pixelRatio: n
const cosRoll = Math.cos(transform.rollInRadians);
const sinRoll = Math.sin(transform.rollInRadians);
const mercatorHorizon = getMercatorHorizon(transform);
const projectionData = transform.getProjectionData(null);
const projectionData = transform.getProjectionData({overscaledTileID: null});
const skyBlend = projectionData.projectionTransition;
return {
'u_sky_color': sky.properties.get('sky-color'),
Expand Down

0 comments on commit 6ba22fd

Please sign in to comment.