This commit is contained in:
“christopheseux”
2023-05-02 18:38:16 +02:00
parent 7f1e2cc0b2
commit 9f11a18c3a
15 changed files with 1655 additions and 1450 deletions
+18 -4
View File
@@ -1,16 +1,30 @@
# SPDX-License-Identifier: GPL-2.0-or-later
from vse_toolbox.operators import operators
from vse_toolbox.operators import (addon, casting, imports, render, sequencer,
spreadsheet, tracker)
modules = (
addon,
casting,
imports,
render,
sequencer,
spreadsheet,
tracker
)
if 'bpy' in locals():
import importlib
importlib.reload(operators)
for mod in modules:
importlib.reload(mod)
import bpy
def register():
operators.register()
for mod in modules:
mod.register()
def unregister():
operators.unregister()
for mod in modules:
mod.unregister()