feat: add help view
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 1m20s

This commit is contained in:
2024-04-26 15:30:52 +02:00
parent d06b33f508
commit cafe9bff84
16 changed files with 256 additions and 87 deletions

View File

@@ -21,8 +21,6 @@
bw = width / cameraPosition[2];
bh = height / cameraPosition[2];
}
$: backgroundColor = $colors["layer-0"];
$: lineColor = $colors["outline"];
</script>
<T.Group
@@ -54,8 +52,8 @@
},
}}
uniforms.camPos.value={cameraPosition}
uniforms.backgroundColor.value={backgroundColor}
uniforms.lineColor.value={lineColor}
uniforms.backgroundColor.value={$colors["layer-0"]}
uniforms.lineColor.value={$colors["outline"]}
uniforms.zoomLimits.value={[minZoom, maxZoom]}
uniforms.dimensions.value={[width, height]}
/>