X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_mesh.py;h=cc8ee6ff9abbc1696fe2e13b16e752761ae7c58c;hb=eb76b7a02f56d8bca6cb78a7c272b9670f7faace;hp=18ae856a927ce8f28b70a45c51ab4ed5b9cfda00;hpb=820d8ff86b911f1119b8cde03839687176b9b1ee;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_mesh.py b/blender/io_mspgl/export_mesh.py index 18ae856a..cc8ee6ff 100644 --- a/blender/io_mspgl/export_mesh.py +++ b/blender/io_mspgl/export_mesh.py @@ -194,6 +194,15 @@ class MeshExporter: def export(self, context, out_file): if self.compound: objs = context.selected_objects + check = objs + while check: + children = [] + for o in check: + for c in o.children: + if c.compound: + children.append(c) + objs += children + check = children else: objs = [context.active_object]