Skip to content
Snippets Groups Projects
Commit 0e0629da authored by Constantin Rahn's avatar Constantin Rahn
Browse files

Ignore curves on export

parent 321c31b6
No related branches found
No related tags found
No related merge requests found
...@@ -661,7 +661,7 @@ def write_pov(filename, scene=None, info_callback=None): ...@@ -661,7 +661,7 @@ def write_pov(filename, scene=None, info_callback=None):
name_orig = DEF_OBJ_NAME name_orig = DEF_OBJ_NAME
name = objectNames[name_orig] = uniqueName(bpy.path.clean_name(name_orig), objectNames) name = objectNames[name_orig] = uniqueName(bpy.path.clean_name(name_orig), objectNames)
############################################# #############################################
if ob.type in ('LAMP', 'CAMERA', 'EMPTY', 'META', 'ARMATURE', 'LATTICE'): if ob.type in ('LAMP', 'CAMERA', 'EMPTY', 'META', 'ARMATURE', 'LATTICE', 'CURVE'):
continue continue
me = ob.data me = ob.data
......
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