diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-08 03:03:16 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-08 03:03:16 -0400 |
commit | a422f32613441b5313e4a3bb0fab61f8cb87914c (patch) | |
tree | 0a6c8f17e6a8df0b6c377813fa700064f68ced93 /src/components/Position.hpp | |
parent | 5f53889d4357d8dba6e726ed38358eca96dbeb47 (diff) | |
parent | 5b1c22529a946a782a8376de2b34c28348d078d1 (diff) |
Using polymorphism for world layer storage now, and added demo backdrops
Diffstat (limited to 'src/components/Position.hpp')
-rw-r--r-- | src/components/Position.hpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/components/Position.hpp b/src/components/Position.hpp index fc5cb9a..bfa4b41 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -24,23 +24,24 @@ struct Position : Component<Position> { public: - float x, y; + float x, y, z; - Position(float _x = 0, float _y = 0) : - x(_x), y(_y) {} + Position(float _x = 0, float _y = 0, float _z = 0) : + x(_x), y(_y), z(_z) {} Position FromLua(sol::object ref) { - glm::vec2 vec = Script::to<glm::vec2>(ref); + glm::vec3 vec = Script::to<glm::vec3>(ref); this->x = vec.x; this->y = vec.y; + this->z = vec.z; return *this; } - glm::vec2 vec() + glm::vec3 vec() { - return glm::vec2(x, y); + return glm::vec3(x, y, z); } void serialize(cereal::JSONOutputArchive& ar) final { |