From 2a27979bdeb410ef7eb3b9c38a3185b9c10285c4 Mon Sep 17 00:00:00 2001 From: Dominik Winkelbauer Date: Fri, 27 Sep 2024 17:31:41 +0200 Subject: [PATCH] chore(loader): Adds collections to blend loader docu --- blenderproc/python/loader/BlendLoader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blenderproc/python/loader/BlendLoader.py b/blenderproc/python/loader/BlendLoader.py index 3937afbf2..f24aed88b 100644 --- a/blenderproc/python/loader/BlendLoader.py +++ b/blenderproc/python/loader/BlendLoader.py @@ -24,7 +24,7 @@ def load_blend(path: str, obj_types: Optional[Union[List[str], str]] = None, nam stored in a .blend file's folders, see Blender's documentation for bpy.types.ID for more info) names. :param data_blocks: The data block or a list of data blocks which should be loaded from the given .blend file. - Available options are: ['armatures', 'cameras', 'curves', 'hairs', 'hair_curves', 'images', + Available options are: ['armatures', 'cameras', 'collections', 'curves', 'hairs', 'hair_curves', 'images', 'lights', 'materials', 'meshes', 'objects', 'textures'] :param link: whether to link instead of append data blocks from .blend file. Linked objects can not be modified. :return: The list of loaded mesh objects.