aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/hud.svelte
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2022-07-05 23:34:03 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2022-07-05 23:34:03 +0200
commit2df937df1372359babd123d1361e702a1a4b8168 (patch)
treea44f4e3e51469c173127ce8660e39c20aa5309d7 /src/lib/components/hud.svelte
parent3717f7fbf9ec110b51fe002cdced5d73ebd6136b (diff)
Create the sensor, move values to config
Diffstat (limited to 'src/lib/components/hud.svelte')
-rw-r--r--src/lib/components/hud.svelte5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/components/hud.svelte b/src/lib/components/hud.svelte
index ce32e0d..f79658a 100644
--- a/src/lib/components/hud.svelte
+++ b/src/lib/components/hud.svelte
@@ -1,14 +1,15 @@
<script>
+ import { coordinateLength } from '$lib/config';
+
export let x;
export let y;
- const kCoordinateLength = 6;
const kSeparatorRegex = /([0-9a-z]{2})/g;
const formatCoordinate = function formatCoordinate(coordinate) {
return coordinate
.toString(16)
- .padStart(kCoordinateLength, 0)
+ .padStart(coordinateLength, 0)
.replace(kSeparatorRegex, '$1 ');
}
</script>