aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Script.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 01:05:57 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 01:05:57 -0400
commitea35ad60506407040f7b9fae65c5bdc18f9576bb (patch)
tree7933d683cf84c6cd27ae2568404ed6026637b5b8 /src/components/Script.hpp
parente8d3e8f0522b6d7896f1e3d330c70af5376f7c4c (diff)
Added Lua update function that allows certain entities to update every loop
Diffstat (limited to 'src/components/Script.hpp')
-rw-r--r--src/components/Script.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/Script.hpp b/src/components/Script.hpp
index 66addc8..069fea9 100644
--- a/src/components/Script.hpp
+++ b/src/components/Script.hpp
@@ -47,6 +47,12 @@ public:
caller["Idle"](caller); // Call idle function and pass itself
// in or to fulfill the 'self' param
}
+
+ void update(void)
+ {
+ if (caller["Update"] == sol::type::function)
+ caller["Update"](caller);
+ }
};
#endif // COMPONENT_SCRIPT_HPP_