- bugfix [#20654] the property edge_face_count of the Mesh-Object does not work
- remove unneeded particle function
This commit is contained in:
@@ -299,7 +299,7 @@ class Mesh(bpy_types.ID):
|
||||
@property
|
||||
def edge_face_count(self):
|
||||
edge_face_count_dict = self.edge_face_count_dict
|
||||
return [edge_face_count_dict.get(ed.key, 0) for ed in mesh.edges]
|
||||
return [edge_face_count_dict.get(ed.key, 0) for ed in self.edges]
|
||||
|
||||
def edge_loops(self, faces=None, seams=()):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user