osgParticle::FireEffect设置颜色
时间: 2023-09-15 19:19:08 浏览: 45
粒子系统实例-the lego mindstorms ev3 idea book
osgParticle::FireEffect的颜色可以使用setColor方法来设置。
例如:
```cpp
osg::ref_ptr<osgParticle::FireEffect> fireEffect = new osgParticle::FireEffect();
fireEffect->setColor(osg::Vec4(1.0, 0.5, 0.1, 1.0)); // 设置颜色为橙色
```
setColor方法接受一个四维向量作为参数,分别表示红、绿、蓝和透明度通道的值。取值范围为0.0到1.0之间。
阅读全文