TimeGpencilModifier(GpencilModifier)#
base classes — bpy_struct
, GpencilModifier
- class bpy.types.TimeGpencilModifier(GpencilModifier)#
Time offset modifier
- frame_end#
Final frame of the range
- Type:
int in [0, 1048574], default 250
- frame_scale#
Evaluation time in seconds
- Type:
float in [0.001, 100], default 1.0
- frame_start#
First frame of the range
- Type:
int in [0, 1048574], default 1
- invert_layer_pass#
Inverse filter
- Type:
boolean, default False
- invert_layers#
Inverse filter
- Type:
boolean, default False
- layer#
Layer name
- Type:
string, default “”, (never None)
- layer_pass#
Layer pass index
- Type:
int in [0, 100], default 0
- mode#
NORMAL
Regular – Apply offset in usual animation direction.REVERSE
Reverse – Apply offset in reverse animation direction.FIX
Fixed Frame – Keep frame and do not change with time.PINGPONG
Ping Pong – Loop back and forth starting in reverse.CHAIN
Chain – List of chained animation segments.
- Type:
enum in [‘NORMAL’, ‘REVERSE’, ‘FIX’, ‘PINGPONG’, ‘CHAIN’], default ‘NORMAL’
- offset#
Number of frames to offset original keyframe number or frame to fix
- Type:
int in [-32768, 32767], default 1
- segment_active_index#
Active index in the segment list
- Type:
int in [0, inf], default 0
- segments#
- Type:
bpy_prop_collection
ofTimeGpencilModifierSegment
, (readonly)
- use_custom_frame_range#
Define a custom range of frames to use in modifier
- Type:
boolean, default False
- use_keep_loop#
Retiming end frames and move to start of animation to keep loop
- Type:
boolean, default True
- 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