Skip to content
Snippets Groups Projects
Commit b8ac7b80 authored by est31's avatar est31
Browse files

Fix nametag hiding

Commit

c3b27975 "Move object nametags to camera"

has added a regression to still display
a shadow if their alpha got set to 0.
parent c8ff11b4
No related branches found
No related tags found
No related merge requests found
......@@ -540,6 +540,12 @@ void Camera::drawNametags()
i = m_nametags.begin();
i != m_nametags.end(); ++i) {
Nametag *nametag = *i;
if (nametag->nametag_color.getAlpha() == 0) {
// Enforce hiding nametag,
// because if freetype is enabled, a grey
// shadow can remain.
continue;
}
v3f pos = nametag->parent_node->getPosition() + v3f(0.0, 1.1 * BS, 0.0);
f32 transformed_pos[4] = { pos.X, pos.Y, pos.Z, 1.0f };
trans.multiplyWith1x4Matrix(transformed_pos);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment