Re: [osg-users] Converting .ive model to .osg - including textures

2013-04-11 Thread David Glenn
Greetings! Pardon me, but can you also convert .dds using the Gimp? ... D Glenn David Glenn --- D Glenn 3D Computer Graphics Entertainment. www.dglenn.com -- Read this topic online here:

Re: [osg-users] Converting .ive model to .osg - including textures

2013-04-03 Thread Thijs Hofland
Hi, Sorry to bump such an old question, but I am having trouble with exporting my .ive files to .osg files to get the textures. I have followed this tutorial: http://lagoon.cse.unr.edu/~lagoon/index.php/ECSLENT_Blender_import/export#How_to_convert_.ive_to_Ogre_.mesh, however I get stuck at

Re: [osg-users] Converting .ive model to .osg - including textures

2013-04-03 Thread Sebastian Messerschmidt
Hello Thijs, It seems you don't have a valid plugin for png. Check if the osgDB plugin exists in the plugin directory. Also there might be an option to write the textures to a different format. As a last resort you could roll your own exporter using the database readcallback and save to

Re: [osg-users] Converting .ive model to .osg - including textures

2013-04-03 Thread Thijs Hofland
Thank you for the quick reply! I had to use the following command, that did work (since the textures were compressed): Code: osgconv --compressed -O OutputTextureFiles sgnl_01.ive signaal2.osg It had .dds files as output, which I converted to .png with Photoshop, by making use of the

Re: [osg-users] Converting .ive model to .osg - including textures

2009-04-20 Thread Robert Osfield
Try: osgconv --format osg Plugin osgPlugins-2.9.3/osgdb_osg.so { ReaderWriter : OSG Reader/Writer { features : readObject readNode writeObject writeNode extensions : .osg OpenSceneGraph Ascii file format extensions : .osgs Psuedo

Re: [osg-users] Converting .ive model to .osg - including textures

2009-04-20 Thread Pierre Bourdin (gmail)
Hi J-S, you can query the options via: osgconv --format osg It's verbose, but very useful... Pierre. Le lundi 20 avril 2009 à 10:27 -0400, Jean-Sébastien Guay a écrit : Hi all, I would like to convert an .ive to .osg including textures. I've looked through osgconv --help but didn't find

Re: [osg-users] Converting .ive model to .osg - including textures

2009-04-20 Thread Pierre Bourdin (gmail)
Le lundi 20 avril 2009 à 15:51 +0100, Robert Osfield a écrit : I receive your mail as mine was going... You are to quick answering ;-) Pierre. Try: osgconv --format osg Plugin osgPlugins-2.9.3/osgdb_osg.so { ReaderWriter : OSG Reader/Writer { features : readObject

Re: [osg-users] Converting .ive model to .osg - including textures

2009-04-20 Thread Jean-Sébastien Guay
Hello Robert, osgconv myfile.ive myfile.osg -O OutputTextureFiles Worked for me, but only if the directories that the original files came from were already created. Hmm, I didn't think it would be a format-specific option, I thought it would be in the --help text, but it's true that it's