diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-07-05 23:34:03 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-07-05 23:34:03 +0200 |
| commit | 2df937df1372359babd123d1361e702a1a4b8168 (patch) | |
| tree | a44f4e3e51469c173127ce8660e39c20aa5309d7 /src/lib/components/hud.svelte | |
| parent | 3717f7fbf9ec110b51fe002cdced5d73ebd6136b (diff) | |
Create the sensor, move values to config
Diffstat (limited to 'src/lib/components/hud.svelte')
| -rw-r--r-- | src/lib/components/hud.svelte | 5 |
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> |