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 0fb370cadc - Show all commits

View File

@ -601,13 +601,13 @@ class ASSETPIPE_OT_batch_ownership_change(bpy.types.Operator):
if self.data_source == "SELECT"
else context.scene.objects
)
if self.filter_owners == "LOCAL":
if self.filter_owners == "LOCAL" and self.data_type == "OBJECT":
return [
item
for item in self._filter_by_name(context, objs)
if item.asset_id_owner in get_local_task_layers()
]
if self.filter_owners == "OWNED":
if self.filter_owners == "OWNED" and self.data_type == "OBJECT":
return [
item
for item in self._filter_by_name(context, objs)