Okay. The files that start with "exp" are generally there to support exporting .flt files. Most of the remaining source code, with some exceptions, is there to support importing .flt files.
One thing you should know about OSG plugins: They support reading a file and creating a scene graph from that data, and/or they support taking a scene graph and exporting it as a file. So, what I think you want to do is this: You want to modify the .flt plugin _import_ part, to take information out of certain fields in the .flt file and store it somehow in the scene graph, so that it will be available to the .osg/.ive _export_ plugins when you write out a OSG file. I'd advise you to search for the word "comment" in the .flt plugin. This should lead you to code that loads .flt comment records and stores the data in the OSG description list, which gets exported to .osg/.ive. So you'd want to do something similar. Paul Martz Skew Matrix Software LLC http://www.skew-matrix.com +1 303 859 9466 -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Kip Sent: Wednesday, May 06, 2009 8:47 AM To: [email protected] Subject: Re: [osg-users] [osgPlugins] getting extra attributes from .flt toosg/ive Thanks for the quick response Paul. Im new to the plugin section of osg, could you possibly point me in the direction of where information about importing flt data might be. As i mentioned i see code that seems to be writing out .flt files but i cant seem to find the ones that are storing the flt information for writing out to different types of files. ------------------ Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=11500#11500 _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

