starting position

This commit is contained in:
2025-03-30 16:56:55 -04:00
parent 6cd85f2f3e
commit 714a7bc6bd

View File

@@ -39,8 +39,8 @@ impl Camera {
impl Default for Camera { impl Default for Camera {
fn default() -> Self { fn default() -> Self {
Self { Self {
pos: Vector2::zeros(), pos: Vector2::new(-0.5, 0.0).map(FixedDec::from),
zoom: Zoom::new(0, 0.0), zoom: Zoom::new(0, 2.1),
} }
} }
} }