3D-Viewer: fixes a shadow hit bug
This commit is contained in:
parent
88d76eaf62
commit
2764a41d96
|
@ -459,7 +459,7 @@ bool CLAYERITEM::IntersectP( const RAY &aRay , float aMaxDistance ) const
|
|||
(boxHitPointEnd - boxHitPointStart) * tOut;
|
||||
const float t = glm::length( hitPoint - aRay.m_Origin );
|
||||
|
||||
if( (t < 1.0f) && ( t > FLT_EPSILON ) )
|
||||
if( (t < aMaxDistance) && ( t > FLT_EPSILON ) )
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue