smol stuff

This commit is contained in:
2025-03-09 18:29:00 +01:00
parent 4f97e26295
commit f314b960e1
3 changed files with 3 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ services:
PSN_DEFAULT_UDP_MCAST_ADDRESS: "236.10.10.10"
WEB_SERVER_PORT: 8000
OSC_SERVER_PORT: 9000
NUM_TRACKERS: 3
NUM_TRACKERS: 0
volumes:
- spot-data:/data

View File

@@ -8,10 +8,7 @@
let ws: WebSocket | null = $state(null);
let image: HTMLImageElement | null = $state(null);
let trackers: TrackerData[] = $state([
{ id: 1, x: 0, y: 0, z: 0 },
{ id: 2, x: 0, y: 0, z: 0 },
]);
let trackers: TrackerData[] = $state([]);
let width = $state(0);
let height = $state(0);

View File

@@ -21,7 +21,7 @@
class="absolute left-0 top-0 z-50 m-0 h-full max-h-full w-full max-w-full p-0 open:bg-black/80"
>
<div class="flex h-full w-full flex-col items-center justify-center">
<h1 class="text-8xl text-red-600">THIS GONNA FUCK THINGS UP</h1>
<h1 class="text-8xl text-red-600 text-center">THIS GONNA FUCK THINGS UP</h1>
<div class="flex items-center justify-center gap-6">
<button class="rounded-md bg-gray-400 p-4" onclick={() => dialog.close()}
>Close</button