aboutsummaryrefslogtreecommitdiff
path: root/game/player/PlayerSubScene.cpp
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2025-01-06 11:11:25 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2025-01-06 11:11:25 +0100
commit20ae1e9dc2043ef3c190f77dd5f9de74bcd533de (patch)
treee4f4789f242bd4e60f5eae7bd8cc0d233da5be2a /game/player/PlayerSubScene.cpp
parentb31934cc6867be10e986a4bd4d0ab81dc91d56ec (diff)
Added dt
Diffstat (limited to 'game/player/PlayerSubScene.cpp')
-rw-r--r--game/player/PlayerSubScene.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/player/PlayerSubScene.cpp b/game/player/PlayerSubScene.cpp
index 7e78e82..c1e5e2f 100644
--- a/game/player/PlayerSubScene.cpp
+++ b/game/player/PlayerSubScene.cpp
@@ -143,7 +143,7 @@ PlayerSubScene::PlayerSubScene(Scene & scn) {
player.add_component<Rigidbody>(Rigidbody::Data {
.gravity_scale = PLAYER_GRAVITY_SCALE,
.body_type = Rigidbody::BodyType::DYNAMIC,
- .linear_velocity = vec2(PLAYER_SPEED, 0),
+ .linear_velocity = vec2(PLAYER_SPEED * 0.02, 0),
.collision_layers
= {COLL_LAY_BOT_TOP, COLL_LAY_ZAPPER, COLL_LAY_LASER, COLL_LAY_MISSILE},
.collision_layer = COLL_LAY_PLAYER,