Commit Graph

4 Commits

Author SHA1 Message Date
Diva Canto
068c04afbe Deleting two extraneous fields from the llmesh header, rez_position and rez_scale. In talking to Dahlia, it turns out this was something she added to do something specific. She then gave this code to lkalif, who kept those 2 fields. They were harmless, but meaningless for the viewer. 2014-12-14 17:00:11 -08:00
Latif Khalifa
9262308529 Mesh upload: added image upload along with the models 2014-06-27 15:08:24 +02:00
Latif Khalifa
38447ea215 Speedup generation of indices 2014-06-27 11:18:31 +02:00
Latif Khalifa
2e306450c7 Collada parser and model uploader. Work in progress.
Sample code:

            var parser = new OpenMetaverse.ImportExport.ColladaLoader();
            var prims = parser.Load(o.FileName);
            if (prims != null && prims.Count > 0)
            {
                var uploader = new OpenMetaverse.ImportExport.ModelUploader(client, prims);
                uploader.PrepareUpload();
            }

Note that PrepareUpload performs the upload as well in this initial stage.

TODO:
* Image upload
* Support for quads in addition to triangles
2014-06-27 08:21:29 +02:00