TransformSequence(EffectSequence)
base classes — bpy_struct
, Sequence
, EffectSequence
- class bpy.types.TransformSequence(EffectSequence)
Sequence strip applying affine transformations to other strips
- input_count
- Type
int in [0, inf], default 0, (readonly)
- interpolation
Method to determine how missing pixels are created
NONE
None – No interpolation.BILINEAR
Bilinear – Bilinear interpolation.BICUBIC
Bicubic – Bicubic interpolation.
- Type
enum in [‘NONE’, ‘BILINEAR’, ‘BICUBIC’], default ‘NONE’
- rotation_start
Degrees to rotate the input
- Type
float in [-inf, inf], default 0.0
- scale_start_x
Amount to scale the input in the X axis
- Type
float in [0, inf], default 0.0
- scale_start_y
Amount to scale the input in the Y axis
- Type
float in [0, inf], default 0.0
- translate_start_x
Amount to move the input on the X axis
- Type
float in [-inf, inf], default 0.0
- translate_start_y
Amount to move the input on the Y axis
- Type
float in [-inf, inf], default 0.0
- translation_unit
Unit of measure to translate the input
- Type
enum in [‘PIXELS’, ‘PERCENT’], default ‘PIXELS’
- use_uniform_scale
Scale uniformly, preserving aspect ratio
- Type
boolean, default False
- 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