From 714a7bc6bd1a113126509eb0b6d7fa7ff66eea30 Mon Sep 17 00:00:00 2001 From: shadow cat Date: Sun, 30 Mar 2025 16:56:55 -0400 Subject: [PATCH] starting position --- src/client/camera.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/camera.rs b/src/client/camera.rs index cb6ac25..b8f106c 100644 --- a/src/client/camera.rs +++ b/src/client/camera.rs @@ -39,8 +39,8 @@ impl Camera { impl Default for Camera { fn default() -> Self { Self { - pos: Vector2::zeros(), - zoom: Zoom::new(0, 0.0), + pos: Vector2::new(-0.5, 0.0).map(FixedDec::from), + zoom: Zoom::new(0, 2.1), } } }