paint mode precise layer picker on W

1.7.4

- added: Pick layer from closest stroke in paint mode using quick press on `W` for stroke (and `alt+W` for fills)
This commit is contained in:
Pullusb
2021-10-26 02:24:19 +02:00
parent a0ed941e4b
commit 56cbc04c65
4 changed files with 177 additions and 3 deletions
+5 -2
View File
@@ -15,7 +15,7 @@ bl_info = {
"name": "GP toolbox",
"description": "Set of tools for Grease Pencil in animation production",
"author": "Samuel Bernou, Christophe Seux",
"version": (1, 7, 3),
"version": (1, 7, 4),
"blender": (2, 91, 0),
"location": "Sidebar (N menu) > Gpencil > Toolbox / Gpencil properties",
"warning": "",
@@ -48,6 +48,7 @@ from . import OP_realign
from . import OP_depth_move
from . import OP_key_duplicate_send
from . import OP_layer_manager
from . import OP_stroke_picker
from . import OP_material_picker
from . import OP_eraser_brush
from . import TOOL_eraser_brush
@@ -579,6 +580,7 @@ def register():
OP_layer_manager.register()
OP_eraser_brush.register()
OP_material_picker.register()
OP_stroke_picker.register()
TOOL_eraser_brush.register()
handler_draw_cam.register()
UI_tools.register()
@@ -604,9 +606,10 @@ def unregister():
bpy.utils.unregister_class(cls)
UI_tools.unregister()
handler_draw_cam.unregister()
TOOL_eraser_brush.unregister()
OP_stroke_picker.unregister()
OP_material_picker.unregister()
OP_eraser_brush.unregister()
TOOL_eraser_brush.unregister()
OP_layer_manager.unregister()
OP_key_duplicate_send.unregister()
OP_depth_move.unregister()