AnimationLayer(bpy_struct)#

base class — bpy_struct

class bpy.types.AnimationLayer(bpy_struct)#
influence#

How much of this layer is used when blending into the lower layers

Type:

float in [0, 1], default 1.0

mix_mode#

How animation of this layer is blended into the lower layers

  • REPLACE Replace – Channels in this layer override the same channels from underlying layers.

  • OFFSET Offset – Channels in this layer are added to underlying layers as sequential operations.

  • ADD Add – Channels in this layer are added to underlying layers on a per-channel basis.

  • SUBTRACT Subtract – Channels in this layer are subtracted to underlying layers on a per-channel basis.

  • MULTIPLY Multiply – Channels in this layer are multiplied with underlying layers on a per-channel basis.

Type:

enum in [‘REPLACE’, ‘OFFSET’, ‘ADD’, ‘SUBTRACT’, ‘MULTIPLY’], default ‘REPLACE’

name#
Type:

string, default “”, (never None)

strips#

The list of strips that are on this animation layer

Type:

AnimationStrips bpy_prop_collection of AnimationStrip, (readonly)

classmethod bl_rna_get_subclass(id, default=None)#
Parameters:

id (string) – 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 (string) – The RNA type identifier.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties#

Inherited Functions#

References#