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

lacunarity

Gap between successive frequencies. Depth needs to be greater than 0 for this to have an effect

Type:

float in [-inf, inf], default 2.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

roughness

Amount of high frequency detail. Depth needs to be greater than 0 for this to have an effect

Type:

float in [-inf, inf], default 0.5

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

use_legacy_noise

Use the legacy way of generating noise. Has the issue that it can produce values outside of -1/1

Type:

boolean, default False

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

Inherited Properties

Inherited Functions