I have this strange bug where if i attach a standard point light to follow my character, then jump in the air beyond the lights 3D World position, the shadow casted volumes blow up the mesh to a HUGE scale and corrupt all other shadows in the scene.
After many many hours of trying to narrow down the bug that causes Shadows / Shadow Volumes to BLOW UP meshes I believe i have finally found the BUG! and how i fixed it was very simple:
in CShadowVolumeSceneNode.cpp Line 374 i changed getLengthSQ() to getLength() and that fixed the problem now my shadow casted meshes are no longer expanding beyond the lights position into oblivion they appear to stop scaling once i leave the point light position and no longer causing strange bugs.
Code: Select all
core::vector3df lpos(dl.Position);
if (dl.CastShadows &&
fabs((lpos - parentpos).getLength()) <= (dl.Radius*dl.Radius*4.0f))
{
matInv.transformVect(lpos);
createShadowVolume(lpos, false);
}