aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Script.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 01:42:36 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 01:42:36 -0400
commitb52920a35eb69d1a258c737e3114fbe5cfe9aca5 (patch)
treeb3a7363b6f4bae8cda513a54ef84069103e6388b /src/components/Script.hpp
parentea35ad60506407040f7b9fae65c5bdc18f9576bb (diff)
Changed Lua Idle function names
Diffstat (limited to 'src/components/Script.hpp')
-rw-r--r--src/components/Script.hpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/components/Script.hpp b/src/components/Script.hpp
index 069fea9..b3c89f3 100644
--- a/src/components/Script.hpp
+++ b/src/components/Script.hpp
@@ -42,16 +42,23 @@ public:
return *this;
}
- void exec(void) {
+ void exec(void)
+ {
if (caller["Idle"] == sol::type::function)
caller["Idle"](caller); // Call idle function and pass itself
// in or to fulfill the 'self' param
}
- void update(void)
+ void updatePhysics(void)
+ {
+ if (caller["PhysicsIdle"] == sol::type::function)
+ caller["PhysicsIdle"](caller);
+ }
+
+ void updateRender(void)
{
- if (caller["Update"] == sol::type::function)
- caller["Update"](caller);
+ if (caller["RenderIdle"] == sol::type::function)
+ caller["RenderIdle"](caller);
}
};