Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2006-04-01 23:28:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-04-01 23:28:55 +0400
commit218e1927c8b0e728cb227daba31622ff8bff42c5 (patch)
tree5455c2884ebea520156a2b7385465b968c9036ad /release/scripts/mesh_boneweight_copy.py
parent5f12ccd0f139b5654b11e7311089188d464c6a4c (diff)
Silly var typo fix.
Diffstat (limited to 'release/scripts/mesh_boneweight_copy.py')
-rwxr-xr-xrelease/scripts/mesh_boneweight_copy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/mesh_boneweight_copy.py b/release/scripts/mesh_boneweight_copy.py
index 5e9ec4ed235..e82769a3e04 100755
--- a/release/scripts/mesh_boneweight_copy.py
+++ b/release/scripts/mesh_boneweight_copy.py
@@ -46,7 +46,7 @@ def copy_bone_influences(_from, _to):
from_infs= me_from.getVertexInfluences(from_idx)
for group, weight in from_infs:
- me_to.assignVertsToGroup(group, [from_idx], weight, add_)
+ me_to.assignVertsToGroup(group, [i], weight, add_)
me_to.update()