NoiseGpencilModifier(GpencilModifier)#
base classes — bpy_struct
, GpencilModifier
- class bpy.types.NoiseGpencilModifier(GpencilModifier)#
Noise effect modifier
- curve#
Custom curve to apply effect
- Type:
CurveMapping
, (readonly)
- factor#
Amount of noise to apply
- Type:
float in [0, inf], default 0.5
- factor_strength#
Amount of noise to apply to opacity
- Type:
float in [0, inf], default 0.0
- factor_thickness#
Amount of noise to apply to thickness
- Type:
float in [0, inf], default 0.0
- factor_uvs#
Amount of noise to apply to UV rotation
- Type:
float in [0, inf], default 0.0
- invert_layer_pass#
Inverse filter
- Type:
boolean, default False
- invert_layers#
Inverse filter
- Type:
boolean, default False
- invert_material_pass#
Inverse filter
- Type:
boolean, default False
- invert_materials#
Inverse filter
- Type:
boolean, default False
- invert_vertex#
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
- noise_offset#
Offset the noise along the strokes
- Type:
float in [0, inf], default 0.0
- noise_scale#
Scale the noise frequency
- Type:
float in [0, 1], default 0.0
- pass_index#
Pass index
- Type:
int in [0, 100], default 0
- random_mode#
Where to perform randomization
STEP
Steps – Randomize every number of frames.KEYFRAME
Keyframes – Randomize on keyframes only.
- Type:
enum in [‘STEP’, ‘KEYFRAME’], default ‘STEP’
- seed#
Random seed
- Type:
int in [0, inf], default 1
- step#
Number of frames between randomization steps
- Type:
int in [1, 100], default 4
- use_custom_curve#
Use a custom curve to define noise effect along the strokes
- Type:
boolean, default False
- use_random#
Use random values over time
- Type:
boolean, default True
- vertex_group#
Vertex group name for modulating the deform
- Type:
string, default “”, (never None)
- 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