From 58a12594690a556afd0ea1a97eb5d6496e7b50b9 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 7 Feb 2019 12:59:40 +0100 Subject: Fix object.users_collection not including scene collections. --- release/scripts/modules/bpy_types.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'release/scripts/modules') diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py index f12b259362a..32e8fe40c6a 100644 --- a/release/scripts/modules/bpy_types.py +++ b/release/scripts/modules/bpy_types.py @@ -120,10 +120,12 @@ class Object(bpy_types.ID): @property def users_collection(self): - """The collections this object is in. Warning: takes O(len(bpy.data.collections)) time.""" + """The collections this object is in. Warning: takes O(len(bpy.data.collections) + len(bpy.data.scenes)) time.""" import bpy return tuple(collection for collection in bpy.data.collections - if self in collection.objects[:]) + if self in collection.objects[:]) + \ + tuple(scene.collection for scene in bpy.data.scenes + if self in scene.collection.objects[:]) @property def users_scene(self): -- cgit v1.2.3