diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-07 17:39:52 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-07 17:39:52 -0400 |
commit | 1b63e00b6b08133f5ee37ed90043eee0f67942fd (patch) | |
tree | 686443bdea7368eeaa98c1ea8347a491200ff8d7 /src/components/Position.hpp | |
parent | 9cef5e64ddd1ef20369b25cc19b1980084ebaefe (diff) |
Added script conversion code, can now convert table to vec2, vec3 and vec4
Diffstat (limited to 'src/components/Position.hpp')
-rw-r--r-- | src/components/Position.hpp | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/components/Position.hpp b/src/components/Position.hpp index 56e8707..07009f9 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -31,15 +31,10 @@ public: Position FromLua(sol::object ref) { - if (ref.get_type() == sol::type::table) { - sol::table tab = ref; - if (tab["x"] != nullptr) - this->x = tab["x"]; - if (tab["y"] != nullptr) - this->y = tab["y"]; - } else { - throw std::string("Position table not formatted properly"); - } + glm::vec2 vec = Script::to<glm::vec2>(ref); + this->x = vec.x; + this->y = vec.y; + return *this; } |