UnifiedPaintSettings(bpy_struct)#

base class — bpy_struct

class bpy.types.UnifiedPaintSettings(bpy_struct)#

Overrides for some of the active brush’s settings

color#
Type:

mathutils.Color of 3 items in [0, 1], default (0.0, 0.0, 0.0)

input_samples#

Number of input samples to average together to smooth the brush stroke

Type:

int in [1, 64], default 1

secondary_color#
Type:

mathutils.Color of 3 items in [0, 1], default (0.0, 0.0, 0.0)

size#

Radius of the brush

Type:

int in [1, 5000], default 50

strength#

How powerful the effect of the brush is when applied

Type:

float in [0, 10], default 0.5

unprojected_radius#

Radius of brush in Blender units

Type:

float in [0.001, inf], default 0.29

use_locked_size#

Measure brush size relative to the view or the scene

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

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

Type:

enum in [‘VIEW’, ‘SCENE’], default ‘VIEW’

use_unified_color#

Instead of per-brush color, the color is shared across brushes

Type:

boolean, default False

use_unified_input_samples#

Instead of per-brush input samples, the value is shared across brushes

Type:

boolean, default False

use_unified_size#

Instead of per-brush radius, the radius is shared across brushes

Type:

boolean, default True

use_unified_strength#

Instead of per-brush strength, the strength is shared across brushes

Type:

boolean, default True

use_unified_weight#

Instead of per-brush weight, the weight is shared across brushes

Type:

boolean, default False

weight#

Weight to assign in vertex groups

Type:

float in [0, 1], default 0.5

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

Inherited Properties

Inherited Functions

References