1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 10:15:38 +00:00

Merge pull request #3175 from bosvensson1/patch-52

removes sky bounds
This commit is contained in:
Chris Djali 2021-10-15 20:12:32 +01:00 committed by GitHub
commit 9c040d1ff7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -299,7 +299,7 @@ public:
osg::BoundingSphere computeBound() const override
{
return osg::BoundingSphere(osg::Vec3f(0,0,0), 0);
return osg::BoundingSphere();
}
class CullCallback : public SceneUtil::NodeCallback<CullCallback, osg::Node*, osgUtil::CullVisitor*>