batch reproject ops

1.0.9:

- feat: Reproject all frames operator
This commit is contained in:
Pullusb
2021-05-04 23:17:19 +02:00
parent 07a44190c9
commit 492095d333
4 changed files with 97 additions and 30 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, 0, 8),
"version": (1, 0, 9),
"blender": (2, 91, 0),
"location": "sidebar (N menu) > Gpencil > Toolbox / Gpencil properties",
"warning": "",
@@ -44,6 +44,7 @@ from . import OP_palettes
from . import OP_file_checker
from . import OP_render
from . import OP_copy_paste
from . import OP_realign
from . import keymaps
from .OP_pseudo_tint import GPT_OT_auto_tint_gp_layers
@@ -439,6 +440,7 @@ def register():
OP_cursor_snap_canvas.register()
OP_render.register()
OP_copy_paste.register()
OP_realign.register()
UI_tools.register()
keymaps.register()
bpy.types.Scene.gptoolprops = bpy.props.PointerProperty(type = GP_PG_ToolsSettings)
@@ -460,6 +462,7 @@ def unregister():
for cls in reversed(classes):
bpy.utils.unregister_class(cls)
UI_tools.unregister()
OP_realign.unregister()
OP_copy_paste.unregister()
OP_render.unregister()
OP_cursor_snap_canvas.unregister()