From cf05cd5bf3dec0c2a56c000ca94423697ffc8c08 Mon Sep 17 00:00:00 2001 From: Mathieu Date: Wed, 29 Nov 2017 11:05:53 +0100 Subject: [PATCH] Make the culling be disables at the drawable level not at the geode level --- src/osgPlugins/logo/ReaderWriterLOGO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/logo/ReaderWriterLOGO.cpp b/src/osgPlugins/logo/ReaderWriterLOGO.cpp index 0af8a20a7..2ca9fd318 100644 --- a/src/osgPlugins/logo/ReaderWriterLOGO.cpp +++ b/src/osgPlugins/logo/ReaderWriterLOGO.cpp @@ -321,7 +321,7 @@ class LOGOReaderWriter : public osgDB::ReaderWriter if( ld->hasLogos() ) geode->addDrawable( ld ); - geode->setCullingActive(false); + ld->setCullingActive(false); return geode; } };