mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- only render visual portals if they are front facing
This commit is contained in:
parent
cbbf4fb662
commit
01ea329cd4
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ bool RenderPolyWall::RenderLine(PolyRenderThread *thread, seg_t *line, sector_t
|
||||||
linePortals.push_back(std::unique_ptr<PolyDrawLinePortal>(new PolyDrawLinePortal(line->linedef)));
|
linePortals.push_back(std::unique_ptr<PolyDrawLinePortal>(new PolyDrawLinePortal(line->linedef)));
|
||||||
polyportal = linePortals.back().get();
|
polyportal = linePortals.back().get();
|
||||||
}
|
}
|
||||||
else if (line->linedef && line->linedef->isVisualPortal())
|
else if (line->linedef && line->linedef->isVisualPortal() && line->sidedef == line->linedef->sidedef[0])
|
||||||
{
|
{
|
||||||
if (portalEnterLine == line->linedef)
|
if (portalEnterLine == line->linedef)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue