mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 20:53:52 +00:00
Fix ESM4 marker model hiding hack
This commit is contained in:
parent
3301ebb2cb
commit
887d09e051
1 changed files with 1 additions and 1 deletions
|
@ -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 {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue