Текстуры высот и нормалей

This commit is contained in:
2023-02-03 13:20:52 +03:00
parent 2aaf2b51b2
commit a2a4097a20
6 changed files with 77 additions and 12 deletions

View File

@@ -99,6 +99,8 @@ class Model : public Node
Texture texture_diffuse; // Диффузная текстура
Texture texture_ambient; // Текстура фонового освщения
Texture texture_specular; // Текстура зеркального отражения
Texture texture_heights; // Текстура высот
Texture texture_normals; // Текстура нормалей
};
#endif // MODEL_H

View File

@@ -10,6 +10,8 @@ enum TexType {
TEX_DIFFUSE,
TEX_AMBIENT,
TEX_SPECULAR,
TEX_HEIGHTS,
TEX_NORMAL,
TEX_AVAILABLE_COUNT
};