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};