diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 00:08:38 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-02 00:08:38 -0400 |
commit | 7f66a924156e6baa9110e2e023e3a24c31ce95d3 (patch) | |
tree | cd15542fcebdec4d49af9fae1f4867a1f3947094 /src/components/Render.hpp | |
parent | 1ecf176a48d8a3e4e17df2ebcc4f8974cd1ce023 (diff) |
Added LIGHTING
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" |