[osg-users] NodeVisitor finds the named Node, but NodeCallback doesn't rotate it

Jannik Heller scrawl at baseoftrash.de
Sun Aug 2 05:43:54 PDT 2015


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








More information about the osg-users mailing list