disable name for cams

1.3.2:

- change: disable manip cam name drawing
- code: add initial support for main cam frame draw within camera view
This commit is contained in:
Pullusb
2021-05-30 23:51:18 +02:00
parent e22b91265b
commit 4b9cd20891
4 changed files with 148 additions and 2 deletions
+4 -1
View File
@@ -15,7 +15,7 @@ bl_info = {
"name": "GP toolbox",
"description": "Set of tools for Grease Pencil in animation production",
"author": "Samuel Bernou",
"version": (1, 3, 1),
"version": (1, 3, 2),
"blender": (2, 91, 0),
"location": "sidebar (N menu) > Gpencil > Toolbox / Gpencil properties",
"warning": "",
@@ -47,6 +47,7 @@ from . import OP_copy_paste
from . import OP_realign
from . import OP_depth_move
from . import OP_key_duplicate_send
from . import handler_draw_cam
from . import keymaps
from .OP_pseudo_tint import GPT_OT_auto_tint_gp_layers
@@ -448,6 +449,7 @@ def register():
OP_realign.register()
OP_depth_move.register()
OP_key_duplicate_send.register()
handler_draw_cam.register()
UI_tools.register()
keymaps.register()
bpy.types.Scene.gptoolprops = bpy.props.PointerProperty(type = GP_PG_ToolsSettings)
@@ -469,6 +471,7 @@ def unregister():
for cls in reversed(classes):
bpy.utils.unregister_class(cls)
UI_tools.unregister()
handler_draw_cam.unregister()
OP_key_duplicate_send.unregister()
OP_depth_move.unregister()
OP_realign.unregister()