aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 01:22:14 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 01:22:14 -0400
commit871a882833364cf3a2b1de13fc25f610ef5d7da5 (patch)
tree72bdcb11af6ac4229a9d5ff3df4a81609784e49c /src/script.cpp
parent4eeacc60cab3d6cb070bcd19a5259b7a95832a1d (diff)
Added velocity component, and force add component dependencies when they don't exist
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp10
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;
}