Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--release/scripts/modules/bpy_types.py6
1 files changed, 4 insertions, 2 deletions
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):