DriverVariable(bpy_struct)

base class — bpy_struct

class bpy.types.DriverVariable(bpy_struct)

Variable from some source/target for driver relationship

name

Name to use in scripted expressions/functions (no spaces or dots are allowed, and must start with a letter)

Type:string, default “”, (never None)
targets

Sources of input data for evaluating this variable

Type:bpy_prop_collection of DriverTarget, (readonly)
type

Driver variable type

  • SINGLE_PROP Single Property, Use the value from some RNA property (Default).
  • TRANSFORMS Transform Channel, Final transformation value of object or bone.
  • ROTATION_DIFF Rotational Difference, Use the angle between two bones.
  • LOC_DIFF Distance, Distance between two bones or objects.
Type:enum in [‘SINGLE_PROP’, ‘TRANSFORMS’, ‘ROTATION_DIFF’, ‘LOC_DIFF’], default ‘SINGLE_PROP’

Inherited Properties

Inherited Functions

References