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 83b95ad611 - Show all commits

View File

@ -177,6 +177,14 @@ class AssetTransferMapping:
if check_transfer_data_item.owner != transfer_data_item.owner and not (
check_transfer_data_item.surrender or transfer_data_item.surrender
):
# In the case where we have a modifier where I changed my local task layer
# this should not return as a conflict
# Do this only if both task layers are local to the current file
if (
check_transfer_data_item.owner in self._local_tls
and transfer_data_item.owner in self._local_tls
):
return
self.conflict_transfer_data.append(transfer_data_item)
print("CONFLICT FOUND")
return True