Display:
Master Commits
Branch Commits
All Commits
Blender
Git "experimental_gp_weight" branch commits.
Page: 26 / 122
March 3, 2018, 09:39 (GMT)
Implement brush eraser quick switch This eraser switch works very similar to smooth sculpt brush in object sculpt mode. When the user press Ctrl, the current drawing brush is replaced by the default eraser brush while hold the key. After release the override key, the brush back to the drawing brush.
March 3, 2018, 09:17 (GMT)
UI: Hide appeareance panel for Eraser brush
March 3, 2018, 09:12 (GMT)
Create a full set of eraser brushes Create Soft, Hard and Stroke eraser brushes.
March 2, 2018, 23:07 (GMT)
Add new property Default Eraser This property will be used when the eraser is enabled using fast switch key while drawing with other type of brush.
March 2, 2018, 22:24 (GMT)
Merge branch 'blender2.8' into greasepencil-object
March 2, 2018, 22:19 (GMT)
Add new Eraser modes to UI panel Now there are 3 types of Eraser in UI panel: Soft: Need several passes to clean stroke. Hard: One pass, clean points. Stroke: Clean all stroke when touch any point. This modes were available before using modifier keys, but it was not easy to discover.
March 2, 2018, 20:13 (GMT)
Cleanup: Move eraser brush draw to function and avoid duplicated code
March 2, 2018, 19:56 (GMT)
Fix problem with Eraser cursor size The problem was the internal red area was not using the same size of the external lines.
March 2, 2018, 19:15 (GMT)
Change Eraser brush to use brush radius not global value The old configuration uses a global user prefs value, but now must be the brush size. Still need to fix the problem when resize size of the brush.
March 2, 2018, 19:04 (GMT)
Enable right cursor for Erase brush The cursor must show that you are using the eraser
March 2, 2018, 18:30 (GMT)
WIP: New Eraser brush This new brush is equal to the old eraser, but it makes the interface more consistent. Still need more work to adapt all eraser features, limit other actions not related to eraser and brush switching.
March 2, 2018, 15:57 (GMT)
Cleanup previous commit Make more compact the code
March 2, 2018, 15:53 (GMT)
Hide Draw cursor when Eraser is enabled If the eraser is enabled, the little color dot used as cursor for drawing must be hidden and replaced by dash line circle cursor only.
March 2, 2018, 15:41 (GMT)
Remove duplicate line This line had to be removed in a previous commit.
March 2, 2018, 15:00 (GMT)
Merge branch 'blender2.8' into greasepencil-object
March 2, 2018, 14:53 (GMT)
Fix again grease pencil modes after merge
March 2, 2018, 13:15 (GMT)
Small change to capture algorithm
March 2, 2018, 10:39 (GMT)
Adapt code after merge THe code was moved to new module
March 2, 2018, 10:29 (GMT)
Merge branch 'blender2.8' into greasepencil-object Conflicts: source/blender/editors/object/object_edit.c source/blender/editors/object/object_select.c
March 2, 2018, 10:26 (GMT)
Tweak missing event algorithm for extreme zoom Due int number limitations, when the zoom factor is extreme, the points are captured with gaps. This change try to minimize this effect, but it's impossible to solve this issue completely. The problem is the mouse position is always defined by a pair of int number, so the maximum precision is limited to that, so when project the point in 3D space, there are small precission erros.