Dash Ratio and Dash Samples are brush parameters to modify the strength of the brush during a stroke. This is useful to create dashed lines in texture paint or stitches in sculpt mode.
Details
Details
Diff Detail
Diff Detail
- Repository
- rB Blender
- Branch
- paint-brush-rate (branched from master)
- Build Status
Buildable 5703 Build 5703: arc lint + arc unit
Event Timeline
Comment Actions
- Disable step instead of set strength to 0
I think doing this should not affect any tool that uses spacing/line/curve
| release/scripts/startup/bl_ui/space_view3d_toolbar.py | ||
|---|---|---|
| 972 | Perhaps set this to false and in stead of col.row just use row? | |
| 979 | Same here | |
| source/blender/blenloader/intern/versioning_280.c | ||
| 3933 | Can't we check if dash_ratio/dash_samples are new, can lead to future unwanted behavior | |
| source/blender/editors/sculpt_paint/paint_stroke.c | ||
| 489 | When is dash_samples 0? | |
| source/blender/blenloader/intern/versioning_280.c | ||
|---|---|---|
| 3933 | Is there other way to check this different than checking if the values are initialized to incorrect defaults? | |
| source/blender/blenloader/intern/versioning_280.c | ||
|---|---|---|
| 3933 | DNA_struct_elem_find can check if the input file was saved using a blend version with a known specific DNA field. eg | |
| source/blender/blenloader/intern/versioning_280.c | ||
|---|---|---|
| 3947 | Merge together with previous if statement. both exist or don't exist there is no way that one exist without the other. | |