rna renaming, still only adjusting properties that wont be animated (at least its very unlikely).

This commit is contained in:
2010-08-18 07:14:10 +00:00
parent 54e6ea70c0
commit 7da5d9faec
72 changed files with 457 additions and 472 deletions

View File

@@ -177,10 +177,8 @@ def extend(obj, operator, EXTEND_MODE):
except:
edge_faces[edkey] = [i]
#SEAM = me.edges.seam
if EXTEND_MODE == 'LENGTH':
edge_loops = me.edge_loops_from_faces(face_sel, [ed.key for ed in me.edges if ed.seam])
edge_loops = me.edge_loops_from_faces(face_sel, [ed.key for ed in me.edges if ed.use_seam])
me_verts = me.vertices
for loop in edge_loops:
looplen = [0.0]
@@ -192,7 +190,7 @@ def extend(obj, operator, EXTEND_MODE):
# remove seams, so we dont map accross seams.
for ed in me.edges:
if ed.seam:
if ed.use_seam:
# remove the edge pair if we can
try:
del edge_faces[ed.key]