FModifierStepped(FModifier)#
base classes — bpy_struct
, FModifier
- class bpy.types.FModifierStepped(FModifier)#
Hold each interpolated value from the F-Curve for several frames without changing the timing
- frame_end#
Frame that modifier’s influence ends (if applicable)
- Type:
float in [-inf, inf], default 0.0
- frame_offset#
Reference number of frames before frames get held (use to get hold for ‘1-3’ vs ‘5-7’ holding patterns)
- Type:
float in [-inf, inf], default 0.0
- frame_start#
Frame that modifier’s influence starts (if applicable)
- Type:
float in [-inf, inf], default 0.0
- frame_step#
Number of frames to hold each value
- Type:
float in [-inf, inf], default 0.0
- use_frame_end#
Restrict modifier to only act before its ‘end’ frame
- Type:
boolean, default False
- use_frame_start#
Restrict modifier to only act after its ‘start’ frame
- 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