layer selection management by prefix or color.

1.5.4

- feat: Layer manager
  - select/set layer prefix
  - select/set layer color
- code: refactor name builder function
This commit is contained in:
Pullusb
2021-06-25 18:18:42 +02:00
parent 15aec65b19
commit 801e14cb7a
4 changed files with 346 additions and 120 deletions
+4 -4
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, 5, 3),
"version": (1, 5, 4),
"blender": (2, 91, 0),
"location": "Sidebar (N menu) > Gpencil > Toolbox / Gpencil properties",
"warning": "",
@@ -48,7 +48,7 @@ from . import OP_copy_paste
from . import OP_realign
from . import OP_depth_move
from . import OP_key_duplicate_send
from . import OP_layer_name_builder
from . import OP_layer_manager
from . import OP_eraser_brush
from . import TOOL_eraser_brush
from . import handler_draw_cam
@@ -538,7 +538,7 @@ def register():
OP_realign.register()
OP_depth_move.register()
OP_key_duplicate_send.register()
OP_layer_name_builder.register()
OP_layer_manager.register()
OP_eraser_brush.register()
TOOL_eraser_brush.register()
handler_draw_cam.register()
@@ -567,7 +567,7 @@ def unregister():
handler_draw_cam.unregister()
OP_eraser_brush.unregister()
TOOL_eraser_brush.unregister()
OP_layer_name_builder.unregister()
OP_layer_manager.unregister()
OP_key_duplicate_send.unregister()
OP_depth_move.unregister()
OP_realign.unregister()