From 49d3d1ceedee3712cda1344b276bf4c3079f013f Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Thu, 17 Oct 2024 19:11:54 +0200 Subject: [PATCH] Making the speed a float number --- ECS/TransformComponent.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ECS/TransformComponent.hpp b/ECS/TransformComponent.hpp index f326884..14ccff6 100644 --- a/ECS/TransformComponent.hpp +++ b/ECS/TransformComponent.hpp @@ -22,7 +22,7 @@ struct TransformComponent : public Component { position.zero(); } - TransformComponent(Vector2D pos, Vector2D dim, int sc, int spd) : position(pos), speed(spd), dimension(dim), scale(sc) + TransformComponent(Vector2D pos, Vector2D dim, int sc, float spd) : position(pos), speed(spd), dimension(dim), scale(sc) {} void init() override @@ -32,7 +32,7 @@ struct TransformComponent : public Component { void update() override { - position += (velocity * static_cast(speed)); + position += (velocity * speed); entity->draw_priority = static_cast(position.y + static_cast(dimension.y * scale)); } @@ -40,7 +40,7 @@ struct TransformComponent : public Component { Vector2D position; Vector2D velocity; - int speed {1}; + float speed {1}; Vector2D dimension {32, 32}; int scale {1};