diff --git a/genwrapper.conf b/genwrapper.conf index 7f3a560f0..a9d053e7a 100644 --- a/genwrapper.conf +++ b/genwrapper.conf @@ -398,6 +398,12 @@ end # avoid functions that use protected types, since those are not handled # currently +configure reflector "osgSim::OverlayNode" + configure method /.*getOverlayData.*/ + replace with "" + end +end + configure reflector "osg::Shader" configure method /.*_PerContextShader_.*/ replace with "" diff --git a/src/osgWrappers/osgSim/OverlayNode.cpp b/src/osgWrappers/osgSim/OverlayNode.cpp index d86478a38..e7a63bfb3 100644 --- a/src/osgWrappers/osgSim/OverlayNode.cpp +++ b/src/osgWrappers/osgSim/OverlayNode.cpp @@ -239,6 +239,7 @@ BEGIN_OBJECT_REFLECTOR(osgSim::OverlayNode) __void__updateMainSubgraphStateSet, "", ""); + I_SimpleProperty(bool, ContinuousUpdate, __bool__getContinuousUpdate, __void__setContinuousUpdate__bool);