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/Render.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/components/Render.hpp') diff --git a/src/components/Render.hpp b/src/components/Render.hpp index f5936ea..3f1750f 100644 --- a/src/components/Render.hpp +++ b/src/components/Render.hpp @@ -27,7 +27,7 @@ public: Texture texture; Texture normal; bool visible; - bool hasNormal = false; + bool flipX = false; Render(std::string _file) : texture(_file), visible(true) {} @@ -42,10 +42,10 @@ public: this->visible = tab["visible"]; if (tab["texture"].get_type() == sol::type::string) this->texture = Texture(static_cast(tab["texture"])); - if (tab["normal"].get_type() == sol::type::string) { + if (tab["normal"].get_type() == sol::type::string) this->normal = Texture(static_cast(tab["normal"])); - hasNormal = true; - } + if (tab["flipx"].get_type() == sol::type::boolean) + this->flipX = tab["flipx"]; } else { throw std::string( "Render component table formatted incorrectly" -- cgit v1.2.3