aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 01:25:14 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-01 01:25:14 -0400
commitf2411141e364766b1294f1b3d9e1a307b9de0c24 (patch)
tree3fb80cf5a4357f0b060035ef8c8e4f6fa191bb2f /src/script.cpp
parentefec4f7b42b12d4765da5a886fcf2c5279c8caaf (diff)
Game loop now updates position every tick, and added circular movement to dog
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp6
1 files changed, 3 insertions, 3 deletions
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>("Position",
- sol::constructors<Position(float x, float y), Position()>(),
+ sol::constructors<Position(double x, double y), Position()>(),
"x", &Position::x,
"y", &Position::y);
@@ -101,7 +101,7 @@ void ScriptSystem::scriptExport()
"texture", &Render::texture);
lua.new_usertype<Velocity>("Velocity",
- sol::constructors<Velocity(float, float), Velocity()>(),
+ sol::constructors<Velocity(double, double), Velocity()>(),
"x", &Velocity::x,
"y", &Velocity::y);