[osg-users] [osgPlugins] osg store user values

2014-07-18 Thread Robert Gosztyla
Hi, Is it possible to force osg plugin to store user values for nodes (set by setUserValue() method from osg::Node) somehow? Maybe using osgDB::Options, but haven't found any solution. Or only solution to store nodes with user values is writting separate plugin? Thank you! Cheers, Robert

Re: [osg-users] [osgPlugins] osg store user values

2014-07-18 Thread Robert Osfield
Hi Robert. On 18 July 2014 14:11, Robert Gosztyla robert.goszt...@gmail.com wrote: Is it possible to force osg plugin to store user values for nodes (set by setUserValue() method from osg::Node) somehow? Maybe using osgDB::Options, but haven't found any solution. Or only solution to store

Re: [osg-users] [osgPlugins] osg store user values

2014-07-18 Thread Robert Gosztyla
robertosfield wrote: Hi Robert. The new serializers allow you to implement your own serializers for your own osg::Object subclasses... This means that i need to subclass all osg classes to have such possibility? What about osg::Group, osg::Transform and osg::Geode? Is it possible to just

Re: [osg-users] [osgPlugins] osg store user values

2014-07-18 Thread Robert Osfield
Hi Robert, On 18 July 2014 14:36, Robert Gosztyla robert.goszt...@gmail.com wrote: robertosfield wrote: Hi Robert. The new serializers allow you to implement your own serializers for your own osg::Object subclasses... This means that i need to subclass all osg classes to have such