CollectionExports(bpy_struct)

base class — bpy_struct

class bpy.types.CollectionExports(bpy_struct)

Collection of export handlers

new(type, *, name='')

Add an export handler to the collection

Parameters
  • type (enum in ['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 (string, (optional, never None)) – Name, Name of the new export handler

Returns

Newly created export handler

Return type

CollectionExport

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 in [-inf, inf]) – From Index, Index to move

  • to_index (int in [-inf, inf]) – To Index, Target index

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.Struct subclass

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