diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 02:51:20 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 02:51:20 -0400 |
commit | 4bf539d953871dbddddcc00275ffdcaddece5091 (patch) | |
tree | f2871e27fce45b89c93054b9930f2c458a1f5e51 /src/world.cpp | |
parent | 9583f32bc760576d250e78a79a812ec95ebd0f8e (diff) |
Updated world texture loading in Lua
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index 1dca763..3fb5b6b 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -144,7 +144,7 @@ void World::generateMesh() Texture &t = registry.at(d).texture; glm::vec2& to = t.offset; - glm::vec2& ts = t.offsetSize; + glm::vec2& ts = t.size; mesh += {X , Y , Z, to.x , to.y+ts.y, 1.0}; mesh += {X+1, Y , Z, to.x+ts.x, to.y+ts.y, 1.0}; |