Asset Pipeline v2 #145
@ -18,7 +18,7 @@ def get_other_ids(collection: bpy.types.Collection) -> list[bpy.types.ID]:
|
|||||||
return [
|
return [
|
||||||
id
|
id
|
||||||
for id in all_ids_of_coll
|
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)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user