Asset Pipeline v2 #145

Closed
Nick Alberelli wants to merge 431 commits from (deleted):feature/asset-pipeline-v2 into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 8b56e31b77 - Show all commits

View File

@ -514,6 +514,13 @@ def transfer_shape_key(
] ]
val = mathutils.Vector(sum(np.array(vals_weighted))) val = mathutils.Vector(sum(np.array(vals_weighted)))
sk_target.data[i].co = vert.co + val sk_target.data[i].co = vert.co + val
fcurves = core.find_drivers(
source_obj.data.shape_keys.animation_data.drivers,
'key_blocks',
shape_key_name,
)
for fcurve in fcurves:
core.copy_driver(from_fcurve=fcurve, target=target_obj.data.shape_keys)
# ATTRIBUTE # ATTRIBUTE