|
osg::ref_ptr<osg::Geometry> lineGeom = new osg::Geometry;
lineGeom->setUpdateCallback(new DynamicLineCallback(2,66,0.01));
其中 DynamicLineCallback为class DynamicLineCallback:public osg:rawable::UpdateCallback
有没有类似lineGeom->removeUpdateCallback()这样的函数来实现这个回调的停止,如果没有这样的函数,怎样停止这个回调呢?谢谢给位指教! |
|