diff options
| author | Kai Stevenson <kai@kaistevenson.com> | 2026-08-23 23:35:57 -0700 |
|---|---|---|
| committer | Kai Stevenson <kai@kaistevenson.com> | 2026-08-23 23:35:57 -0700 |
| commit | 5bedb15c61ad26824dbe6053f0b66b11b6ad5047 (patch) | |
| tree | 97c91f976a9ccaf81c3fb91d40f18752a81d7685 /src/content/entities/entity_bullet_emitter.rs | |
| parent | 245d8eb77d7b92a50a48d4b953e5a8e0d789307c (diff) | |
fix scaling
Diffstat (limited to 'src/content/entities/entity_bullet_emitter.rs')
| -rw-r--r-- | src/content/entities/entity_bullet_emitter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
