UnifiedPaintSettings(bpy_struct)

base class — bpy_struct

class bpy.types.UnifiedPaintSettings(bpy_struct)

Overrides for some of the active brush’s settings

color

(array of 3 items, in [0, 1], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

hue_jitter

Color jitter effect on hue (in [0, 1], default 0.0)

Type:

float

input_samples

Number of input samples to average together to smooth the brush stroke (in [1, 64], default 1)

Type:

int

saturation_jitter

Color jitter effect on saturation (in [0, 1], default 0.0)

Type:

float

secondary_color

(array of 3 items, in [0, 1], default (1.0, 1.0, 1.0))

Type:

mathutils.Color

size

Diameter of the brush (in [1, 10000], default 100)

Type:

int

strength

How powerful the effect of the brush is when applied (in [0, 10], default 0.5)

Type:

float

unprojected_size

Diameter of brush in Blender units (in [0.001, inf], default 0.58)

Type:

float

use_color_jitter

Jitter brush color (default False)

Type:

bool

use_locked_size

Measure brush size relative to the view or the scene (default 'VIEW')

  • VIEW View – Measure brush size relative to the view.

  • SCENE Scene – Measure brush size relative to the scene.

Type:

Literal[‘VIEW’, ‘SCENE’]

use_random_press_hue

Use pressure to modulate randomness (default False)

Type:

bool

use_random_press_sat

Use pressure to modulate randomness (default False)

Type:

bool

use_random_press_val

Use pressure to modulate randomness (default False)

Type:

bool

use_stroke_random_hue

Use randomness at stroke level (default False)

Type:

bool

use_stroke_random_sat

Use randomness at stroke level (default False)

Type:

bool

use_stroke_random_val

Use randomness at stroke level (default False)

Type:

bool

use_unified_color

Instead of per-brush color, the color is shared across brushes (default True)

Type:

bool

use_unified_input_samples

Instead of per-brush input samples, the value is shared across brushes (default False)

Type:

bool

use_unified_size

Instead of per-brush size, the size is shared across brushes (default True)

Type:

bool

use_unified_strength

Instead of per-brush strength, the strength is shared across brushes (default False)

Type:

bool

use_unified_weight

Instead of per-brush weight, the weight is shared across brushes (default False)

Type:

bool

value_jitter

Color jitter effect on value (in [0, 1], default 0.0)

Type:

float

weight

Weight to assign in vertex groups (in [0, 1], default 0.5)

Type:

float

classmethod bl_rna_get_subclass(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (bpy.types.Struct | None) – The value to return when not found.

Returns:

The RNA type or default when not found.

Return type:

bpy.types.Struct

classmethod bl_rna_get_subclass_py(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (type | None) – The value to return when not found.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties

Inherited Functions

References