[osg-users] More than one NodeCallback on the same node

2008-07-22 Thread Vincent Bourdier
Hi all, I'm trying to add more than one nodeCallback on a single node. It would be very useful for my application. First way : In the archive, I founded this : http://lists.openscenegraph.org/htdig.cgi/osg-users-openscenegraph.org/2007-October/003905.html I didn't saw it in OSG sources, so I

Re: [osg-users] More than one NodeCallback on the same node

2008-07-22 Thread Robert Osfield
HI Vinvent, A nested callback, is simply a NodeCallback which has another NodeCallback nested in side it. There is an _nestedCallback pointer in NodeCallback to provide the hooks for doing this. A nested set of NodeCallback's can be any length - it effectively just a linked list. Robert. On

Re: [osg-users] More than one NodeCallback on the same node

2008-07-22 Thread Vincent Bourdier
Hi Robert, Thanks for the explanations. Can it be considerer as two callback at the same level ? or the nodecallback and the nested nodecallback are diferents ? What about the link which was about CompositeNodeCallback ? (

Re: [osg-users] More than one NodeCallback on the same node

2008-07-22 Thread Robert Osfield
On Tue, Jul 22, 2008 at 3:22 PM, Vincent Bourdier [EMAIL PROTECTED] wrote: Hi Robert, Thanks for the explanations. Can it be considerer as two callback at the same level ? or the nodecallback and the nested nodecallback are diferents ? They are just the same callbacks, please go look at the