SequenceColorBalanceData(bpy_struct)#
base class — bpy_struct
subclasses —
SequenceColorBalance
- class bpy.types.SequenceColorBalanceData(bpy_struct)#
Color balance parameters for a sequence strip and its modifiers
- correction_method#
LIFT_GAMMA_GAIN
Lift/Gamma/Gain.OFFSET_POWER_SLOPE
Offset/Power/Slope (ASC-CDL) – ASC-CDL standard color correction.
- Type:
enum in [‘LIFT_GAMMA_GAIN’, ‘OFFSET_POWER_SLOPE’], default ‘LIFT_GAMMA_GAIN’
- gain#
Color balance gain (highlights)
- Type:
mathutils.Color
of 3 items in [0, inf], default (1.0, 1.0, 1.0)
- gamma#
Color balance gamma (midtones)
- Type:
mathutils.Color
of 3 items in [0, inf], default (1.0, 1.0, 1.0)
- invert_gain#
Invert the gain color
- Type:
boolean, default False
- invert_gamma#
Invert the gamma color
- Type:
boolean, default False
- invert_lift#
Invert the lift color
- Type:
boolean, default False
- invert_offset#
Invert the offset color
- Type:
boolean, default False
- invert_power#
Invert the power color
- Type:
boolean, default False
- invert_slope#
Invert the slope color
- Type:
boolean, default False
- lift#
Color balance lift (shadows)
- Type:
mathutils.Color
of 3 items in [0, inf], default (1.0, 1.0, 1.0)
- offset#
Correction for entire tonal range
- Type:
mathutils.Color
of 3 items in [0, inf], default (1.0, 1.0, 1.0)
- power#
Correction for midtones
- Type:
mathutils.Color
of 3 items in [0, inf], default (1.0, 1.0, 1.0)
- slope#
Correction for highlights
- Type:
mathutils.Color
of 3 items in [0, inf], default (1.0, 1.0, 1.0)
- classmethod bl_rna_get_subclass(id, default=None)#
- Parameters:
id (str) – 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 (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type