NlaTrack(bpy_struct)

base class — bpy_struct

class bpy.types.NlaTrack(bpy_struct)

An animation layer containing Actions referenced as NLA strips

active

NLA Track is active (default False, readonly)

Type:

bool

is_override_data

In a local override data, whether this NLA track comes from the linked reference data, or is local to the override (default True, readonly)

Type:

bool

is_solo

NLA Track is evaluated itself (i.e. active Action and all other NLA Tracks in the same AnimData block are disabled) (default False)

Type:

bool

lock

NLA Track is locked (default False)

Type:

bool

mute

Disable NLA Track evaluation (default False)

Type:

bool

name

(default “”, never None)

Type:

str

select

NLA Track is selected (default False)

Type:

bool

strips

NLA Strips on this NLA-track (default None, readonly)

Type:

NlaStrips[NlaStrip]

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