Re: [osg-users] Semi-transparency

2010-11-15 Thread lucie lemonnier
Hi, Thank you, it works well! lucie -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=33750#33750 ___ osg-users mailing list osg-users@lists.openscenegraph.org

[osg-users] Semi-transparency

2010-11-10 Thread lucie lemonnier
Hi, How to render an imported model semi-transparent? Thank you! Cheers, lucie -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=33670#33670 ___ osg-users mailing list

Re: [osg-users] Semi-transparency

2010-11-10 Thread Vincent Bourdier
Hi Lucie, You should have a look in osg examples, there is some piece of code where transparency is set. HUD example could be a good start. Here are the main steps : * set the material alpha value to 0.5 (for 50% tranparency) * set the render bin to transparent Hoping this could help you,