Make the culling be disables at the drawable level not at the geode level

This commit is contained in:
Mathieu 2017-11-29 11:05:53 +01:00
parent fc1d19b6e5
commit cf05cd5bf3
No known key found for this signature in database
GPG Key ID: B9FCC2E99545A9A3

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;
}
};