1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-29 13:20:35 +00:00

Merge branch 'markers' into 'master'

Fix ESM4 marker model hiding hack

See merge request OpenMW/openmw!3853
This commit is contained in:
psi29a 2024-02-13 09:13:56 +00:00
commit 9e1cdaceff

View File

@ -103,7 +103,7 @@ namespace MWClass
// Hide meshes meshes/marker/* and *LOD.nif in ESM4 cells. It is a temporarty hack.
// Needed because otherwise LOD meshes are rendered on top of normal meshes.
// TODO: Figure out a better way find markers and LOD meshes; show LOD only outside of active grid.
if (model.empty() || Misc::StringUtils::ciStartsWith(model, "meshes\\marker")
if (model.empty() || Misc::StringUtils::ciStartsWith(model, "marker")
|| Misc::StringUtils::ciEndsWith(model, "lod.nif"))
return {};