diff options
Diffstat (limited to 'src/script.cpp')
-rw-r--r-- | src/script.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/script.cpp b/src/script.cpp index 4dc3a2a..1a6bda8 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -79,6 +79,7 @@ void ScriptSystem::doFile(void) #include <components/Name.hpp> #include <components/Render.hpp> #include <components/Script.hpp> +#include <components/Velocity.hpp> void ScriptSystem::scriptExport() { @@ -130,10 +131,19 @@ sol::table ScriptSystem::spawn(sol::object param) } if (tab["Render"] != nullptr) { + if (!e.has_component<Position>()) + e.assign<Position>(); (*toRet)["Render"] = e.assign<Render>(Render().FromLua(tab["Render"])).get(); } + if (tab["Velocity"] != nullptr) { + if (!e.has_component<Position>()) + e.assign<Position>(); + (*toRet)["Velocity"] = + e.assign<Velocity>(Velocity().FromLua(tab["Velocity"])).get(); + } + } else { std::cerr << "Parameter to spawn() must be a table!" << std::endl; } |