Skip to content

Commit

Permalink
#5465: Backfacing brush faces are no longer being culled in orthoviews
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Feb 5, 2021
1 parent 1e54623 commit 4c6e85e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion radiantcore/brush/BrushNode.cpp
Expand Up @@ -398,7 +398,8 @@ void BrushNode::evaluateViewDependent(const VolumeTest& volume, const Matrix4& l
{
// Check if face is filtered before adding to visibility matrix
// greebo: Removed localToWorld transformation here, brushes don't have a non-identity l2w
if (forceVisible || (i->faceIsVisible() && i->intersectVolume(volume)))
// Don't cull backfacing planes to make those faces visible in orthoview (#5465)
if (forceVisible || i->faceIsVisible())
{
*j = true;

Expand Down

0 comments on commit 4c6e85e

Please sign in to comment.