GPencilInterpolateSettings(bpy_struct)¶
base class — bpy_struct
-
class
bpy.types.GPencilInterpolateSettings(bpy_struct)¶ Settings for Grease Pencil interpolation tools
-
amplitude¶ Amount to boost elastic bounces for ‘elastic’ easing
- Type
float in [0, inf], default 0.0
-
back¶ Amount of overshoot for ‘back’ easing
- Type
float in [-inf, inf], default 0.0
-
easing¶ Which ends of the segment between the preceding and following grease pencil frames easing interpolation is applied to
AUTOAutomatic Easing, Easing type is chosen automatically based on what the type of interpolation used (e.g. ‘Ease In’ for transitional types, and ‘Ease Out’ for dynamic effects).EASE_INEase In, Only on the end closest to the next keyframe.EASE_OUTEase Out, Only on the end closest to the first keyframe.EASE_IN_OUTEase In and Out, Segment between both keyframes.
- Type
enum in [‘AUTO’, ‘EASE_IN’, ‘EASE_OUT’, ‘EASE_IN_OUT’], default ‘AUTO’
-
interpolate_all_layers¶ Interpolate all layers, not only active
- Type
boolean, default False
-
interpolate_selected_only¶ Interpolate only selected strokes in the original frame
- Type
boolean, default False
-
interpolation_curve¶ Custom curve to control ‘sequence’ interpolation between Grease Pencil frames
- Type
CurveMapping, (readonly)
-
period¶ Time between bounces for elastic easing
- Type
float in [-inf, inf], default 0.0
-
type¶ Interpolation method to use the next time ‘Interpolate Sequence’ is run
LINEARLinear, Straight-line interpolation between A and B (i.e. no ease in/out).CUSTOMCustom, Custom interpolation defined using a curve map.SINESinusoidal, Sinusoidal easing (weakest, almost linear but with a slight curvature).QUADQuadratic, Quadratic easing.CUBICCubic, Cubic easing.QUARTQuartic, Quartic easing.QUINTQuintic, Quintic easing.EXPOExponential, Exponential easing (dramatic).CIRCCircular, Circular easing (strongest and most dynamic).BACKBack, Cubic easing with overshoot and settle.BOUNCEBounce, Exponentially decaying parabolic bounce, like when objects collide.ELASTICElastic, Exponentially decaying sine wave, like an elastic band.
- Type
enum in [‘LINEAR’, ‘CUSTOM’, ‘SINE’, ‘QUAD’, ‘CUBIC’, ‘QUART’, ‘QUINT’, ‘EXPO’, ‘CIRC’, ‘BACK’, ‘BOUNCE’, ‘ELASTIC’], default ‘LINEAR’
-
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.Structsubclass
-
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
References