Support alpha-blended sphere mapping

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10496 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2011-12-26 21:17:36 +00:00
parent 0cdbc69c80
commit 41ab5979fa

View File

@ -660,7 +660,17 @@ void Material::setMaterialProperties(video::SMaterial *m)
if (m_sphere_map)
{
m->MaterialType = video::EMT_SPHERE_MAP;
modes++;
// sphere map + alpha blending is a supported combination so in
// this case don't increase mode count
if (m_alpha_blending)
{
m->BlendOperation = video::EBO_ADD;
}
else
{
modes++;
}
}
#if !LIGHTMAP_VISUALISATION
if (m_lightmap)