From 5d62a34ffb2dde2a5c2e23b04b7a03d10e010cf7 Mon Sep 17 00:00:00 2001 From: ZanQdo <zanqdo@gmail.com> Date: Thu, 1 Oct 2015 21:26:05 -0600 Subject: [PATCH] Copy Atributes Addon Adding new custom shape parameters to copy atributes addon --- space_view3d_copy_attributes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py index d6edff27d..91f6ea6c5 100644 --- a/space_view3d_copy_attributes.py +++ b/space_view3d_copy_attributes.py @@ -161,6 +161,8 @@ def pVisScaExec(bone, active, context): def pDrwExec(bone, active, context): bone.custom_shape = active.custom_shape + bone.use_custom_shape_bone_size = active.use_custom_shape_bone_size + bone.custom_shape_scale = active.custom_shape_scale bone.bone.show_wire = active.bone.show_wire @@ -188,7 +190,7 @@ def pIKsExec(bone, active, context): def pBBonesExec(bone, active, context): object = active.id_data generic_copy( - object.data.bones[active.name], + object.data.bones[active.name], object.data.bones[bone.name], "bbone_") -- GitLab