diff options
Diffstat (limited to 'src/components/Render.hpp')
-rw-r--r-- | src/components/Render.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/Render.hpp b/src/components/Render.hpp index 6cc26db..f5936ea 100644 --- a/src/components/Render.hpp +++ b/src/components/Render.hpp @@ -25,7 +25,9 @@ struct Render : Component<Render>, entityx::Component<Render> { public: Texture texture; + Texture normal; bool visible; + bool hasNormal = false; Render(std::string _file) : texture(_file), visible(true) {} @@ -40,6 +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) { + this->normal = Texture(static_cast<std::string>(tab["normal"])); + hasNormal = true; + } } else { throw std::string( "Render component table formatted incorrectly" |