ParticleBrush(bpy_struct)#
base class — bpy_struct
- class bpy.types.ParticleBrush(bpy_struct)#
Particle editing brush
- count#
Particle count
- Type:
int in [1, 1000], default 10
- curve#
- Type:
CurveMapping
, (readonly)
- length_mode#
GROW
Grow – Make hairs longer.SHRINK
Shrink – Make hairs shorter.
- Type:
enum in [‘GROW’, ‘SHRINK’], default ‘GROW’
- puff_mode#
ADD
Add – Make hairs more puffy.SUB
Sub – Make hairs less puffy.
- Type:
enum in [‘ADD’, ‘SUB’], default ‘ADD’
- size#
Radius of the brush in pixels
- Type:
int in [1, 32767], default 50
- steps#
Brush steps
- Type:
int in [1, 32767], default 10
- strength#
Brush strength
- Type:
float in [0.001, 1], default 0.5
- use_puff_volume#
Apply puff to unselected end-points (helps maintain hair volume when puffing root)
- 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