From f2411141e364766b1294f1b3d9e1a307b9de0c24 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 1 Sep 2019 01:25:14 -0400 Subject: Game loop now updates position every tick, and added circular movement to dog --- src/components/Velocity.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/Velocity.hpp') diff --git a/src/components/Velocity.hpp b/src/components/Velocity.hpp index eacadf2..c2b85e8 100644 --- a/src/components/Velocity.hpp +++ b/src/components/Velocity.hpp @@ -25,9 +25,9 @@ struct Velocity : Component, entityx::Component { public: - float x, y; + double x, y; Velocity(): x(0), y(0) {} - Velocity(float _x, float _y): x(_x), y(_y) {} + Velocity(double _x, double _y): x(_x), y(_y) {} Velocity FromLua(sol::object ref) { -- cgit v1.2.3