CollectionExports(bpy_prop_collection)
base classes — bpy_prop, bpy_prop_collection
- class bpy.types.CollectionExports(bpy_prop_collection)
Collection of export handlers
- new(type, *, name='')
Add an export handler to the collection
- Parameters:
type (Literal['IO_FH_alembic', 'IO_FH_usd', 'IO_FH_obj', 'IO_FH_ply', 'IO_FH_stl', 'IO_FH_fbx', 'IO_FH_gltf2']) – Type, The type of export handler to add
name (str) – Name, Name of the new export handler (optional, never None)
- Returns:
Newly created export handler
- Return type:
- remove(exporter)
Remove an export handler from the collection
- Parameters:
exporter (
CollectionExport) – Export Handler to remove
- move(from_index, to_index)
Move an export handler
- Parameters:
from_index (int) – From Index, Index to move (in [-inf, inf])
to_index (int) – To Index, Target index (in [-inf, inf])
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type