mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
Fix for hsBounds asserts
This commit is contained in:
@ -9019,7 +9019,10 @@ hsBool plDXPipeline::TestVisibleWorld( const hsBounds3Ext& wBnd )
|
||||
{
|
||||
if( fView.fCullTreeDirty )
|
||||
IRefreshCullTree();
|
||||
return fView.fCullTree.BoundsVisible(wBnd);
|
||||
if (wBnd.GetType() == kBoundsNormal)
|
||||
return fView.fCullTree.BoundsVisible(wBnd);
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
hsBool plDXPipeline::TestVisibleWorld( const plSceneObject* sObj )
|
||||
|
Reference in New Issue
Block a user