StripColorBalanceData(bpy_struct)

base class — bpy_struct

subclasses — StripColorBalance

class bpy.types.StripColorBalanceData(bpy_struct)

Color balance parameters for a sequence strip and its modifiers

correction_method

(default 'LIFT_GAMMA_GAIN')

  • LIFT_GAMMA_GAIN Lift/Gamma/Gain.

  • OFFSET_POWER_SLOPE Offset/Power/Slope (ASC-CDL) – ASC-CDL standard color correction.

Type:

Literal[‘LIFT_GAMMA_GAIN’, ‘OFFSET_POWER_SLOPE’]

gain

Color balance gain (highlights) (array of 3 items, in [0, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

gamma

Color balance gamma (midtones) (array of 3 items, in [0, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

invert_gain

Invert the gain color (default False)

Type:

bool

invert_gamma

Invert the gamma color (default False)

Type:

bool

invert_lift

Invert the lift color (default False)

Type:

bool

invert_offset

Invert the offset color (default False)

Type:

bool

invert_power

Invert the power color (default False)

Type:

bool

invert_slope

Invert the slope color (default False)

Type:

bool

lift

Color balance lift (shadows) (array of 3 items, in [0, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

offset

Correction for entire tonal range (array of 3 items, in [0, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

power

Correction for midtones (array of 3 items, in [0, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

slope

Correction for highlights (array of 3 items, in [0, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

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