The MatrixTransform you are creating isn't actually in the scene graph. What you have now is:
Root -> (some parent) -> Node as well as a completely detached graph that won't have an effect. MatrixTransform -> Node What you need instead is: Root -> (some parent) -> MatrixTransform -> Node ------------------ Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=64563#64563 _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

