1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-30 09:17:57 +00:00

fixed the bug with black creatures in 3D

This commit is contained in:
Zeno Rogue
2019-08-20 12:57:05 +02:00
parent fe266d3485
commit 62214a26e1
4 changed files with 10 additions and 7 deletions

View File

@@ -15,11 +15,6 @@ struct texture_triangle {
texture_triangle(array<hyperpoint, 3> _v, array<hyperpoint, 3> _tv) : v(_v), tv(_tv) {}
};
struct basic_textureinfo {
int texture_id;
vector<glvertex> tvertices;
};
struct textureinfo : basic_textureinfo {
transmatrix M;
vector<texture_triangle> triangles;