aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Render.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 00:08:38 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-02 00:08:38 -0400
commit7f66a924156e6baa9110e2e023e3a24c31ce95d3 (patch)
treecd15542fcebdec4d49af9fae1f4867a1f3947094 /src/components/Render.hpp
parent1ecf176a48d8a3e4e17df2ebcc4f8974cd1ce023 (diff)
Added LIGHTING
Diffstat (limited to 'src/components/Render.hpp')
-rw-r--r--src/components/Render.hpp6
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"