How to Patch a Blender 2.5x Python Add-on

Опубликовано: 24 Май 2026
на канале: ashasekayi
3,103
7

This video demonstrates how to alter/update a line in a Blender Python add-on script.

Bone Weight Copy 2.5 Link: http://blenderartists.org/forum/showt...

UPDATE: There is a new enhanced version of this script that you can download at http://blog.machinimatrix.org/bone-we...

Line 77:
WSTargetVertsCo = [v.co*targetObject.matrix_world for v in targetObject.data.vertices]
Change to:
WSTargetVertsCo = [targetObject.matrix_world * v.co for v in targetObject.data.vertices]

Line 106:
v.co = v.co * baseObj.matrix_world
Change to:
v.co = baseObj.matrix_world * v.co

Original SL Thread: http://community.secondlife.com/t5/Me...