diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2017-03-15 21:18:15 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2017-03-15 21:18:15 -0400 |
commit | 9b0c9df77ad5ba97ffc8d591c8f8aa20ba09cd90 (patch) | |
tree | d134236290442b5d93da8c893f5070f264f72450 | |
parent | bf01660ab468f49d63a133c28131ab21bba3a1a1 (diff) |
Better triangles for entities
-rw-r--r-- | src/components.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/components.cpp b/src/components.cpp index af746ab..dcb123e 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -144,18 +144,17 @@ void RenderSystem::render(void) sp.offset_tex.x + sp.size_tex.x, sp.offset_tex.y, sp.offset_tex.x + sp.size_tex.x, sp.offset_tex.y + sp.size_tex.y, + sp.offset_tex.x, sp.offset_tex.y, sp.offset_tex.x + sp.size_tex.x, sp.offset_tex.y + sp.size_tex.y, - sp.offset_tex.x, sp.offset_tex.y + sp.size_tex.y, - sp.offset_tex.x, sp.offset_tex.y}; - - + sp.offset_tex.x, sp.offset_tex.y + sp.size_tex.y}; + GLfloat coords[] = {loc.x, loc.y, visible.z + its, loc.x + size.x, loc.y, visible.z + its, loc.x + size.x, loc.y + size.y, visible.z + its, - loc.x + size.x, loc.y + size.y, visible.z + its, - loc.x, loc.y + size.y, visible.z + its, - loc.x, loc.y, visible.z + its}; + loc.x, loc.y, visible.z + its, + loc.x + size.x, loc.y + size.y, visible.z + its, + loc.x, loc.y + size.y, visible.z + its}; // make the entity hit flash red |