From 7f66a924156e6baa9110e2e023e3a24c31ce95d3 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 2 Sep 2019 00:08:38 -0400 Subject: Added LIGHTING --- src/components/Render.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/components/Render.hpp') 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, entityx::Component { 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(tab["texture"])); + if (tab["normal"].get_type() == sol::type::string) { + this->normal = Texture(static_cast(tab["normal"])); + hasNormal = true; + } } else { throw std::string( "Render component table formatted incorrectly" -- cgit v1.2.3