diff options
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> |