From 5bedb15c61ad26824dbe6053f0b66b11b6ad5047 Mon Sep 17 00:00:00 2001 From: Kai Stevenson Date: Sun, 23 Aug 2026 23:35:57 -0700 Subject: fix scaling --- src/content/entities/entity_bullet_emitter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/content') diff --git a/src/content/entities/entity_bullet_emitter.rs b/src/content/entities/entity_bullet_emitter.rs index 1a39440..cddb4b3 100644 --- a/src/content/entities/entity_bullet_emitter.rs +++ b/src/content/entities/entity_bullet_emitter.rs @@ -64,7 +64,7 @@ pub fn entity_bullet_emitter_def(position: Vec2, life: f32) -> EntityDef { }; let rb = RigidBodyBuilder::dynamic() - .translation(position / crate::config::CELLS_TO_METRES) + .translation(position) .gravity_scale(0.0) .build(); -- cgit v1.3.1