mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-03 16:32:42 +00:00
Small correction to OoB viewpoint stacked-sector portal visibility. OoB is not the same as Ortho.
This commit is contained in:
parent
2c4ac886aa
commit
093d3e32e6
1 changed files with 3 additions and 1 deletions
|
@ -157,7 +157,9 @@ void HWWall::SkyPlane(HWWallDispatcher *di, sector_t *sector, int plane, bool al
|
|||
if (di->di && di->di->Viewpoint.IsAllowedOoB())
|
||||
{
|
||||
secplane_t myplane = plane ? sector->ceilingplane : sector->floorplane;
|
||||
if (di->di->Viewpoint.ViewVector3D.dot(myplane.Normal()) > 0.0) return;
|
||||
if (di->di->Viewpoint.IsOrtho() && di->di->Viewpoint.ViewVector3D.dot(myplane.Normal()) > 0.0) return;
|
||||
else if (plane==1 && di->di->Viewpoint.Pos.Z >= myplane.ZatPoint(di->di->Viewpoint.Pos)) return;
|
||||
else if (plane==0 && di->di->Viewpoint.Pos.Z <= myplane.ZatPoint(di->di->Viewpoint.Pos)) return;
|
||||
}
|
||||
auto glport = sector->GetPortalGroup(plane);
|
||||
if (glport != NULL)
|
||||
|
|
Loading…
Reference in a new issue