MovieTrackingMarkers(bpy_prop_collection)
base classes — bpy_prop, bpy_prop_collection
- class bpy.types.MovieTrackingMarkers(bpy_prop_collection)
Collection of markers for movie tracking track
- find_frame(frame, *, exact=True)
Get marker for specified frame
- Parameters:
frame (int) – Frame, Frame number to find marker for (in [0, 1048574])
exact (bool) – Exact, Get marker at exact frame number rather than get estimated marker (optional)
- Returns:
Marker for specified frame
- Return type:
- insert_frame(frame, *, co=(0.0, 0.0))
Insert a new marker at the specified frame
- Parameters:
frame (int) – Frame, Frame number to insert marker to (in [0, 1048574])
co (
mathutils.Vector) – Coordinate, Place new marker at the given frame using specified in normalized space coordinates (array of 2 items, in [-1, 1], optional)
- Returns:
Newly created marker
- Return type:
- delete_frame(frame)
Delete marker at specified frame
- Parameters:
frame (int) – Frame, Frame number to delete marker from (in [0, 1048574])
- 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