Collection(ID)
base classes — bpy_struct, ID
- class bpy.types.Collection(ID)
Collection of Object data-blocks
- active_exporter_index
Active index in the exporters list
- Type:
int in [0, inf], default 0
- all_objects
Objects that are in this collection and its child collections
- Type:
bpy_prop_collectionofObject, (readonly)
- children
Collections that are immediate children of this collection
- Type:
CollectionChildrenbpy_prop_collectionofCollection, (readonly)
- collection_children
Children collections with their parent-collection-specific settings
- Type:
bpy_prop_collectionofCollectionChild, (readonly)
- collection_objects
Objects of the collection with their parent-collection-specific settings
- Type:
bpy_prop_collectionofCollectionObject, (readonly)
- color_tag
Color tag for a collection
- Type:
enum in Collection Color Items, default
"'COLOR_01'"
- exporters
Export Handlers configured for the collection
- Type:
CollectionExportsbpy_prop_collectionofCollectionExport, (readonly)
- hide_render
Globally disable in renders
- Type:
boolean, default False
- hide_select
Disable selection in viewport
- Type:
boolean, default False
- hide_viewport
Globally disable in viewports
- Type:
boolean, default False
- instance_offset
Offset from the origin to use when instancing
- Type:
mathutils.Vectorof 3 items in [-inf, inf], default (0.0, 0.0, 0.0)
- lineart_intersection_mask
Intersection generated by this collection will have this mask value
- Type:
boolean array of 8 items, default (False, False, False, False, False, False, False, False)
- lineart_intersection_priority
The intersection line will be included into the object with the higher intersection priority value
- Type:
int in [0, 255], default 0
- lineart_usage
How to use this collection in Line Art calculation
INCLUDEInclude – Generate feature lines for this collection.OCCLUSION_ONLYOcclusion Only – Only use the collection to produce occlusion.EXCLUDEExclude – Don’t use this collection in Line Art.INTERSECTION_ONLYIntersection Only – Only generate intersection lines for this collection.NO_INTERSECTIONNo Intersection – Include this collection but do not generate intersection lines.FORCE_INTERSECTIONForce Intersection – Generate intersection lines even with objects that disabled intersection.
- Type:
enum in [
'INCLUDE','OCCLUSION_ONLY','EXCLUDE','INTERSECTION_ONLY','NO_INTERSECTION','FORCE_INTERSECTION'], default"'INCLUDE'"
- lineart_use_intersection_mask
Use custom intersection mask for faces in this collection
- Type:
boolean, default False
- objects
Objects that are directly in this collection
- Type:
CollectionObjectsbpy_prop_collectionofObject, (readonly)
- use_collection_spawn
Spawn behaviour when instanced
- Type:
boolean, default False
- use_lineart_intersection_priority
Assign intersection priority value for this collection
- Type:
boolean, default False
- children_recursive
A list of all children from this collection.
- Type:
list of
Collection
Note
Takes
O(n)time, wherenis the total number of all descendant collections.(readonly)
- users_dupli_group
The collection instance objects this collection is used in
- Type:
tuple of
Object
Note
Takes
O(len(bpy.data.objects))time.(readonly)
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type
Inherited Properties
Inherited Functions
References
|