FModifierNoise(FModifier)¶
base classes — bpy_struct
, FModifier
- class bpy.types.FModifierNoise(FModifier)¶
Give randomness to the modified F-Curve
- blend_type¶
Method of modifying the existing F-Curve
- Type:
enum in [‘REPLACE’, ‘ADD’, ‘SUBTRACT’, ‘MULTIPLY’], default ‘REPLACE’
- depth¶
Amount of fine level detail present in the noise
- Type:
int in [0, 32767], default 0
- offset¶
Time offset for the noise effect
- Type:
float in [-inf, inf], default 0.0
- phase¶
A random seed for the noise effect
- Type:
float in [-inf, inf], default 0.0
- scale¶
Scaling (in time) of the noise
- Type:
float in [-inf, inf], default 0.0
- strength¶
Amplitude of the noise - the amount that it modifies the underlying curve
- Type:
float in [-inf, inf], default 0.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