]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_scene.py
Sort things by name when exporting
[libs/gl.git] / blender / io_mspgl / export_scene.py
index 44c892d873d245729ed0c9b28191b6a20300556b..ac812abf7b115766ab0c08af3848614a4ff99ab4 100644 (file)
@@ -19,6 +19,7 @@ class SceneExporter:
                        objs = [o for o in objs if any(a and b for a, b in zip(layers, o.layers))]
                objs = [o for o in objs if o.type=="MESH" and not o.lod_for_parent]
                objs = [o for o in objs if (not o.compound or o.parent not in objs)]
+               objs.sort(key=lambda x:x.name)
 
                path, base = os.path.split(out_fn)
                base, ext = os.path.splitext(base)