Merge pull request #394 from mathieu/master

Make the culling be disabled at the drawable level
This commit is contained in:
OpenSceneGraph git repository 2017-11-29 10:38:52 +00:00 committed by GitHub
commit 27e5041d97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -321,7 +321,7 @@ class LOGOReaderWriter : public osgDB::ReaderWriter
if( ld->hasLogos() )
geode->addDrawable( ld );
geode->setCullingActive(false);
ld->setCullingActive(false);
return geode;
}
};