From ea35ad60506407040f7b9fae65c5bdc18f9576bb Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 01:05:57 -0400 Subject: Added Lua update function that allows certain entities to update every loop --- src/components/Script.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/components/Script.hpp') 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_ -- cgit v1.2.3