Grr, fix for previous FBX commit.

This commit is contained in:
Bastien Montagne 2014-10-01 08:32:39 +02:00
parent c58170fbe2
commit 77618baacd
2 changed files with 2 additions and 2 deletions

View File

@ -2031,7 +2031,7 @@ def fbx_data_from_scene(scene, settings):
# Note: Maybe this is a bit too simplistic, should we use real shape base here? Though FBX does not
# have this at all... Anyway, this should cover most common cases imho.
continue
shape_verts_co.extend(sv_co - v_co)
shape_verts_co.extend(Vector(sv_co) - Vector(v_co))
shape_verts_idx.append(idx)
if not shape_verts_co:
continue

View File

@ -2122,7 +2122,7 @@ def fbx_data_from_scene(scene, settings):
# Note: Maybe this is a bit too simplistic, should we use real shape base here? Though FBX does not
# have this at all... Anyway, this should cover most common cases imho.
continue
shape_verts_co.extend(sv_co - v_co)
shape_verts_co.extend(Vector(sv_co) - Vector(v_co))
shape_verts_idx.append(idx)
if not shape_verts_co:
continue