Enforce hiding nametag

Work around irrlicht bug and hide nametag if its alpha is set to 0.
Thanks @TeTpaAka for pointing out workaround.
This commit is contained in:
est31 2015-05-18 22:41:22 +02:00
parent 5b03857c62
commit d2ca662569
1 changed files with 5 additions and 0 deletions

View File

@ -1721,6 +1721,11 @@ void GenericCAO::processMessage(const std::string &data)
m_nametag_color = readARGB8(is);
if (m_textnode != NULL) {
m_textnode->setTextColor(m_nametag_color);
// Enforce hiding nametag,
// because if freetype is enabled, a grey
// shadow can remain.
m_textnode->setVisible(m_nametag_color.getAlpha() > 0);
}
}
}