===Python API===
Bugfix #3660: NMesh.getVertexInfluences() was broken following the changes to the armature system. Tron Thomas (kudos) came up with a fix that seems to perform identically to the old method. I'm also adding it to the Mesh module for compatibility.
This commit is contained in:
@@ -846,6 +846,16 @@ class Mesh:
|
||||
associated with the mesh's object
|
||||
"""
|
||||
|
||||
def getVertexInfluences(index):
|
||||
"""
|
||||
Get the bone influences for a specific vertex.
|
||||
@type index: int
|
||||
@param index: The index of a vertex.
|
||||
@rtype: list of lists
|
||||
@return: List of pairs [name, weight], where name is the bone name (string)
|
||||
and weight is a float value.
|
||||
"""
|
||||
|
||||
def smooth():
|
||||
"""
|
||||
Flattens angle of selected faces. Experimental mesh tool.
|
||||
|
||||
Reference in New Issue
Block a user