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 fbd4c632c1 - Show all commits

View File

@ -392,10 +392,13 @@ def shape_keys_clean(obj):
def shape_key_is_missing(transfer_info):
obj = transfer_info.id_data
if obj.type != "MESH" or obj.data.shape_keys is None:
return
return transfer_core.transfer_info_is_missing(
transfer_info,
constants.SHAPE_KEY_KEY,
transfer_info.id_data.data.shape_keys.key_blocks,
obj.data.shape_keys.key_blocks,
)