aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Render.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Render.hpp')
-rw-r--r--src/components/Render.hpp8
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"