From 9c9f72c29a71a1813e9bc42d57998676237b57e3 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Tue, 3 Sep 2019 02:22:39 -0400 Subject: Start working on Lua function serialization --- src/script.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/script.cpp') diff --git a/src/script.cpp b/src/script.cpp index fa485bc..351aae4 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -57,7 +57,7 @@ void ScriptSystem::receive([[maybe_unused]] const EntitySpawnEvent &toSpawn) int ScriptSystem::init(void) { - lua.open_libraries(sol::lib::base, sol::lib::math); + lua.open_libraries(sol::lib::base, sol::lib::math, sol::lib::string); scriptExport(); doFile(); @@ -176,6 +176,8 @@ sol::table ScriptSystem::spawn(sol::object param) } if (tab["Light"] != nullptr) { + if (!e.has_component()) // Position must exist for vel. + (*toRet)["Position"] = e.assign().get(); (*toRet)["Light"] = e.assign(Light().FromLua(tab["Light"])).get(); } -- cgit v1.2.3