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 874069ff2d - Show all commits

View File

@ -18,7 +18,7 @@ def get_other_ids(collection: bpy.types.Collection) -> list[bpy.types.ID]:
return [
id
for id in all_ids_of_coll
if type(id) == bpy.types.GeometryNodeTree or type(id) == bpy.types.Image
if isinstance(id, bpy.types.NodeTree) or isinstance(id, bpy.types.Image)
]