aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 16:09:39 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 16:09:39 -0400
commit87f08aaec01c3137637bbcd07bace30e8dd8fd90 (patch)
tree38d2534ba55c0a23c44182b2eaae4111df01417c /src
parent7b63e52b38d131ee44eb341f22d3d39f37979507 (diff)
Forgot to add Velocity component binding to Lua, added
Diffstat (limited to 'src')
-rw-r--r--src/script.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/script.cpp b/src/script.cpp
index d471d65..ec82513 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -101,6 +101,11 @@ void ScriptSystem::scriptExport()
"visible", &Render::visible,
"texture", &Render::texture);
+ lua.new_usertype<Velocity>("Velocity",
+ sol::constructors<Velocity(float, float), Velocity()>(),
+ "x", &Velocity::x,
+ "y", &Velocity::y);
+
auto gamespace = lua["game"].get_or_create<sol::table>();
gamespace.set_function("spawn", func);
}