Extended faction transparency support

This commit is contained in:
mathusummut
2018-06-22 13:06:02 +02:00
parent 656816084c
commit 87465b35d4
6 changed files with 14 additions and 22 deletions

View File

@@ -60,14 +60,9 @@ namespace Shared {
public:
MeshCallbackTeamColor() : MeshCallback() {
teamTexture = NULL;
hasAlpha = false;
}
void setTeamTexture(const Texture *teamTexture, bool hasAlpha) {
void setTeamTexture(const Texture *teamTexture) {
this->teamTexture = teamTexture;
this->hasAlpha = hasAlpha;
}
bool getHasAlpha() {
return hasAlpha;
}
virtual void execute(const Mesh *mesh);
};