mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 23:32:02 +00:00
- since we no longer split walls at 3D floor boundaries, those planes no longer need to be added to the vertex height lists.
This commit is contained in:
parent
53a389aafc
commit
71da7406bd
1 changed files with 0 additions and 9 deletions
|
@ -436,15 +436,6 @@ static void InitVertexData()
|
|||
|
||||
AddToVertex(sec, vt_sectorlists[v-vertexes]);
|
||||
if (sec->heightsec) AddToVertex(sec->heightsec, vt_sectorlists[v-vertexes]);
|
||||
|
||||
for(l=0;l<x.ffloors.Size();l++)
|
||||
{
|
||||
F3DFloor * rover = x.ffloors[l];
|
||||
if(!(rover->flags & FF_EXISTS)) continue;
|
||||
if (rover->flags&FF_NOSHADE) continue; // FF_NOSHADE doesn't create any wall splits
|
||||
|
||||
AddToVertex(rover->model, vt_sectorlists[v-vertexes]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue