diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 01:05:57 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 01:05:57 -0400 |
commit | ea35ad60506407040f7b9fae65c5bdc18f9576bb (patch) | |
tree | 7933d683cf84c6cd27ae2568404ed6026637b5b8 /src/components/Render.hpp | |
parent | e8d3e8f0522b6d7896f1e3d330c70af5376f7c4c (diff) |
Added Lua update function that allows certain entities to update every loop
Diffstat (limited to 'src/components/Render.hpp')
-rw-r--r-- | src/components/Render.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
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<std::string>(tab["texture"])); - if (tab["normal"].get_type() == sol::type::string) { + if (tab["normal"].get_type() == sol::type::string) this->normal = Texture(static_cast<std::string>(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" |