AnimData(bpy_struct)

base class — bpy_struct

class bpy.types.AnimData(bpy_struct)

Animation data for datablock

action

Active Action for this datablock

Type:Action
action_blend_type

Method used for combining Active Action’s result with result of NLA stack

  • REPLACE Replace, Result strip replaces the accumulated results by amount specified by influence.
  • ADD Add, Weighted result of strip is added to the accumulated results.
  • SUBTRACT Subtract, Weighted result of strip is removed from the accumulated results.
  • MULTIPLY Multiply, Weighted result of strip is multiplied with the accumulated results.
Type:enum in [‘REPLACE’, ‘ADD’, ‘SUBTRACT’, ‘MULTIPLY’], default ‘REPLACE’
action_extrapolation

Action to take for gaps past the Active Action’s range (when evaluating with NLA)

  • NOTHING Nothing, Strip has no influence past its extents.
  • HOLD Hold, Hold the first frame if no previous strips in track, and always hold last frame.
  • HOLD_FORWARD Hold Forward, Only hold last frame.
Type:enum in [‘NOTHING’, ‘HOLD’, ‘HOLD_FORWARD’], default ‘HOLD’
action_influence

Amount the Active Action contributes to the result of the NLA stack

Type:float in [0, 1], default 1.0
drivers

The Drivers/Expressions for this datablock

Type:AnimDataDrivers bpy_prop_collection of FCurve, (readonly)
nla_tracks

NLA Tracks (i.e. Animation Layers)

Type:NlaTracks bpy_prop_collection of NlaTrack, (readonly)
use_nla

NLA stack is evaluated when evaluating this block

Type:boolean, default False

Inherited Properties

Inherited Functions

References