aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Position.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-29 20:02:35 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-29 20:02:35 -0400
commite1cdfd27cad943290a0233119548a8dd8876bd52 (patch)
tree1dc0526cc492f9112b5269511c9d634599304940 /src/components/Position.hpp
parent4ac4b280abf2ffa28caa5a532353115a3033444f (diff)
Replaced LuaBridge with sol2 and completely encapsulated scripting within script system
Diffstat (limited to 'src/components/Position.hpp')
-rw-r--r--src/components/Position.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/Position.hpp b/src/components/Position.hpp
index aaa99f9..856b3d7 100644
--- a/src/components/Position.hpp
+++ b/src/components/Position.hpp
@@ -29,17 +29,17 @@ struct Position : Component<Position>, entityx::Component<Position>
Position(float _x, float _y): x(_x), y(_y) {}
Position(void){x = y = 0.0;}
- Position FromLua(luabridge::LuaRef ref)
+ Position FromLua(sol::object ref)
{
- if (ref.isTable()){
- if (!ref["x"].isNil())
- this->x = ref["x"];
- if (!ref["y"].isNil())
- this->y = ref["y"];
+ 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");
}
-
return *this;
}
};