UI: Asset Shelf (Experimental Feature) #104831

Closed
Julian Eisel wants to merge 399 commits from asset-shelf into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 6 additions and 3 deletions
Showing only changes of commit bdf6dd2a39 - Show all commits

View File

@ -178,7 +178,8 @@ class Object(bpy_types.ID):
@property
def children(self):
"""All the children of this object.
"""
All the children of this object.
:type: tuple of :class:`Object`
@ -189,7 +190,8 @@ class Object(bpy_types.ID):
@property
def children_recursive(self):
"""A list of all children from this object.
"""
A list of all children from this object.
:type: tuple of :class:`Object`
@ -231,7 +233,8 @@ class Object(bpy_types.ID):
@property
def users_scene(self):
"""The scenes this object is in.
"""
The scenes this object is in.
:type: tuple of :class:`Scene`