aboutsummaryrefslogtreecommitdiffstats
path: root/src/texture.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-10-07 18:35:47 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-10-07 18:35:47 -0400
commit5f53889d4357d8dba6e726ed38358eca96dbeb47 (patch)
tree8d82a65d007f7bf69dcd650c95bc3ee1463a3002 /src/texture.cpp
parent1b63e00b6b08133f5ee37ed90043eee0f67942fd (diff)
Added ability to change rendering offsets and sizes
Diffstat (limited to 'src/texture.cpp')
-rw-r--r--src/texture.cpp22
1 files changed, 7 insertions, 15 deletions
diff --git a/src/texture.cpp b/src/texture.cpp
index b013bef..331413b 100644
--- a/src/texture.cpp
+++ b/src/texture.cpp
@@ -26,6 +26,8 @@
#include <unordered_map>
#include <iostream>
+#include <script/vectors.hpp>
+
struct TextureData
{
GLuint tex = 0;
@@ -101,20 +103,10 @@ Texture::Texture(sol::object param)
else
return; // If we don't have image data just return a null image
- if (tab["offset"] == sol::type::table) {
- sol::table off = tab["offset"];
- if (off["x"] == sol::type::number)
- offset.x = off.get<float>("x")/width;
- if (off["y"] == sol::type::number)
- offset.y = off.get<float>("y")/height;
- }
-
- if (tab["size"] == sol::type::table) {
- sol::table siz = tab["size"];
- if (siz["x"] == sol::type::number)
- size.x = siz.get<float>("x")/width;
- if (siz["y"] == sol::type::number)
- size.y = siz.get<float>("y")/height;
- }
+ if (tab["offset"].get_type() == sol::type::table)
+ offset = Script::to<glm::vec2>(tab["offset"]);
+
+ if (tab["size"].get_type() == sol::type::table)
+ size = Script::to<glm::vec2>(tab["size"]);
}
}