Extended Model to support specular and normal maps

This commit is contained in:
2014-04-24 02:36:31 +02:00
parent c1cb4da684
commit 0fbce570ff
2 changed files with 12 additions and 2 deletions
+3 -1
View File
@@ -21,7 +21,9 @@ public:
struct TextureGroup
{
std::shared_ptr<Texture> Texture;
std::shared_ptr<::Texture> Texture;
std::shared_ptr<::Texture> NormalMap;
std::shared_ptr<::Texture> SpecularMap;
unsigned int StartIndex;
unsigned int EndIndex;
};