<div dir="ltr"><div><div><div>Hi Florian,<br><br></div>State inheritance won't typically cause problems like you describe.<br><br></div>My recommendation is start aftresh and create a minimal testbed example purely for the purpose of building up a scene graph with the geometry and state that will give the result you want.  This testbed should contain nothing extra, no clever ways of building stuff, just direct creation osg::Geometry all the the arrays and primitives, osg::StateSet, osg::Texture etc. Keep it simple.  Just with single texturing, then add the second texture unit.<br><br></div><div>WIth such a small little testbed it should be possible for you to see what is going on, and give you space to just learn the basic OSG classes and how to use without complications of mapping it to something more complicated, then when you are happy compare the scene graph you've generated with what your original code was outputting.<br><br></div><div>On the review of the scene graph front it's use to write the scene graph out to .osgt form so you can review the actual scene graph you've created rather than what you think you've created.<br></div><div><br></div>Robert.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 4 May 2016 at 22:03, Florian GOLESTIN <span dir="ltr"><<a href="mailto:florian.golestin@gmail.com" target="_blank">florian.golestin@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Robert,<br>
<br>
I tried without the SmoothingVisitor but it does not change anything.<br>
<br>
<br>
However during my tests today I put a "Axes" object (the axes.osgt model from the OpenSceneGraph examples) and some part of the texture on the block below the object just appeared but really dark.<br>
So it it make me think that it's not a texture problem but maybe a light problem.<br>
<br>
I've tried then to use a full ambiant light:<br>
<br>
Code:<br>
<br>
osg::ref_ptr<osg::Node> createLightSource( unsigned int num,<br>
                              const osg::Vec3& trans,<br>
                              const osg::Vec4& color )<br>
{<br>
  osg::ref_ptr<osg::Light> light = new osg::Light;<br>
  light->setLightNum( num );<br>
  light->setDiffuse( color );<br>
<br>
  /* full scene lightened: */<br>
  light->setAmbient(osg::Vec4(1.0,1.0,1.0,1.0));<br>
  light->setSpecular(osg::Vec4(1,1,1,1));  // some examples don't have this one<br>
<br>
<br>
  light->setPosition( osg::Vec4(0.0f, 0.0f, 0.0f, 1.0f) );<br>
  osg::ref_ptr<osg::LightSource> lightSource = new<br>
    osg::LightSource;<br>
  lightSource->setLight( light );<br>
  osg::ref_ptr<osg::MatrixTransform> sourceTrans = new osg::MatrixTransform;<br>
  sourceTrans->setMatrix( osg::Matrix::translate(trans) );<br>
  sourceTrans->addChild( lightSource.get() );<br>
  return sourceTrans;<br>
}<br>
<br>
int     main(int argc, char **argv)<br>
{<br>
  osg::ArgumentParser arguments(&argc,argv);<br>
<br>
  osg::ref_ptr<osg::Group> root = new osg::Group;<br>
<br>
  root->addChild(createLightSource(0, osg::Vec3(0, -2.0, 0), osg::Vec4(1.0, 1.0, 1.0, 1.0)));<br>
  root->addChild(createLightSource(1, osg::Vec3(0, -16.0, 10.0), osg::Vec4(1.0, 1.0, 1.0, 1.0)));<br>
<br>
  root->getOrCreateStateSet()->setMode( GL_LIGHT0, osg::StateAttribute::ON );<br>
  root->getOrCreateStateSet()->setMode( GL_LIGHT1, osg::StateAttribute::ON );<br>
<br>
<br>
<br>
<br>
<br>
Now the texture appears but are really dark such as there is no light.<br>
<br>
Is it something related to states and inheritance?<br>
<br>
Thanks,<br>
<span class="">Florian<br>
<br>
------------------<br>
Read this topic online here:<br>
</span><a href="http://forum.openscenegraph.org/viewtopic.php?p=67051#67051" rel="noreferrer" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=67051#67051</a><br>
<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</div></div></blockquote></div><br></div>