mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-19 15:01:11 +00:00
OBJ Exporter: fixed a problem where the wrong textures were used on 3D floors when they have the "use upper/lower texture" flag set
This commit is contained in:
parent
7834bd1f15
commit
9d8ddfad35
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ namespace CodeImp.DoomBuilder.BuilderModes.IO
|
|||
foreach(VisualMiddle3D m3d in part.middle3d)
|
||||
{
|
||||
if(m3d.Vertices == null) continue;
|
||||
texture = m3d.GetControlLinedef().Front.MiddleTexture;
|
||||
texture = m3d.GetTextureName();
|
||||
if (!skipTextures.Contains(texture))
|
||||
{
|
||||
CheckTextureName(ref texturegeo, ref texture);
|
||||
|
|
Loading…
Reference in a new issue