ActionPoseMarkers(bpy_prop_collection)

base classes — bpy_prop, bpy_prop_collection

class bpy.types.ActionPoseMarkers(bpy_prop_collection)

Collection of timeline markers

active

Active pose marker for this action

Type:

TimelineMarker

active_index

Index of active pose marker (in [0, inf], default 0)

Type:

int

new(name)

Add a pose marker to the action

Parameters:

name (str) – New name for the marker (not unique) (never None)

Returns:

Newly created marker

Return type:

TimelineMarker

remove(marker)

Remove a timeline marker

Parameters:

marker (TimelineMarker) – Timeline marker to remove (never None)

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:

bpy.types.Struct

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

Inherited Properties

Inherited Functions

References