From 5f53889d4357d8dba6e726ed38358eca96dbeb47 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 7 Oct 2019 18:35:47 -0400 Subject: Added ability to change rendering offsets and sizes --- src/components/Position.hpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/components/Position.hpp') diff --git a/src/components/Position.hpp b/src/components/Position.hpp index 07009f9..fc5cb9a 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -24,9 +24,9 @@ struct Position : Component { public: - double x, y; + float x, y; - Position(double _x = 0, double _y = 0) : + Position(float _x = 0, float _y = 0) : x(_x), y(_y) {} Position FromLua(sol::object ref) @@ -38,6 +38,11 @@ public: return *this; } + glm::vec2 vec() + { + return glm::vec2(x, y); + } + void serialize(cereal::JSONOutputArchive& ar) final { ar(CEREAL_NVP(x), CEREAL_NVP(y)); } -- cgit v1.2.3