From f2411141e364766b1294f1b3d9e1a307b9de0c24 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 1 Sep 2019 01:25:14 -0400 Subject: Game loop now updates position every tick, and added circular movement to dog --- src/script.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/script.cpp') diff --git a/src/script.cpp b/src/script.cpp index 89ae9e0..260df13 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -53,7 +53,7 @@ void ScriptSystem::receive([[maybe_unused]] const EntitySpawnEvent &toSpawn) int ScriptSystem::init(void) { - lua.open_libraries(sol::lib::base); + lua.open_libraries(sol::lib::base, sol::lib::math); scriptExport(); doFile(); @@ -87,7 +87,7 @@ void ScriptSystem::scriptExport() [this](sol::table t){ return spawn(t);}; lua.new_usertype("Position", - sol::constructors(), + sol::constructors(), "x", &Position::x, "y", &Position::y); @@ -101,7 +101,7 @@ void ScriptSystem::scriptExport() "texture", &Render::texture); lua.new_usertype("Velocity", - sol::constructors(), + sol::constructors(), "x", &Velocity::x, "y", &Velocity::y); -- cgit v1.2.3