From cff6ba0a316f6f23852f7451adaade8454b6592f Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 3 Sep 2019 20:03:41 -0400 Subject: lua handling movement events? idea --- src/script.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/script.cpp') diff --git a/src/script.cpp b/src/script.cpp index 351aae4..d8f23ec 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -78,6 +78,7 @@ void ScriptSystem::doFile(void) /******************** * SCRIPT PARSING * ********************/ +#include #include #include #include @@ -182,6 +183,12 @@ sol::table ScriptSystem::spawn(sol::object param) e.assign(Light().FromLua(tab["Light"])).get(); } + // Probably should be last + if (tab["EventListeners"] != nullptr) { + sol::table listeners = tab["EventListeners"]; + e.assign(listeners); + } + } else { // TODO better logging std::cerr << "Parameter to spawn() must be a table!" << std::endl; -- cgit v1.2.3