|
求助:
VS2008 + OSG_2.8.2
场景中加载osgParticle::PrecipitationEffect节点后,渲染时会死机,有几次还直接蓝屏了…
用2.6的库+VS2008没有问题。
但是2.8.2的不管是用array提供的库,还是官网上下载的库都试了,都会有这个问题,不知是什么原因。代码如下:
- osgViewer::Viewer* viewer = new osgViewer::Viewer();
-
- osgParticle::PrecipitationEffect* pe = new osgParticle::PrecipitationEffect();
- pe->rain(0.1f);
-
- osg::Group* root = new osg::Group();
-
- root->addChild(osgDB::readNodeFile("cow.osg"));
-
- root->addChild(pe);
-
- viewer->setSceneData(root);
-
- viewer->realize();
-
- viewer->run();
-
- return 0 ;
复制代码
|
|