Map opaque waving leaves to allfaces drawtype

fixes #9842
master
sfan5 2022-05-25 19:00:34 +02:00
parent 0c6a029413
commit bccaf5fc2d
1 changed files with 9 additions and 2 deletions

View File

@ -901,8 +901,15 @@ void ContentFeatures::updateTextures(ITextureSource *tsrc, IShaderSource *shdsrc
solidness = 0;
visual_solidness = 1;
} else {
drawtype = NDT_NORMAL;
solidness = 2;
if (waving >= 1) {
// waving nodes must make faces so there are no gaps
drawtype = NDT_ALLFACES;
solidness = 0;
visual_solidness = 1;
} else {
drawtype = NDT_NORMAL;
solidness = 2;
}
for (TileDef &td : tdef)
td.name += std::string("^[noalpha");
}