Skip to content
Snippets Groups Projects
Commit 3aa36239 authored by Campbell Barton's avatar Campbell Barton
Browse files

dont export duplicate image URL's

parent 44132397
No related branches found
No related tags found
No related merge requests found
......@@ -973,8 +973,11 @@ def export(file,
images.append(os.path.basename(filepath_full))
images.append(filepath_full)
images = [f.replace('\\', '/') for f in images]
images = [f for i, f in enumerate(images) if f not in images[:i]]
fw(ident_step + "url='%s' " % ' '.join(['"%s"' % f.replace('\\', '/') for f in images]))
fw(ident_step + "url='%s' " % ' '.join(['"%s"' % f for f in images]))
fw(ident_step + '/>\n')
def writeBackground(ident, world):
......@@ -1122,11 +1125,12 @@ def export(file,
ident = writeFooter(ident)
export_main()
file.close()
# -------------------------------------------------------------------------
# global cleanup
# -------------------------------------------------------------------------
file.close()
if use_h3d:
bpy.data.materials.remove(gpu_shader_dummy_mat)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment