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
+25
View File
@@ -0,0 +1,25 @@
# SPDX-License-Identifier: GPL-2.0-or-later
from vse_toolbox.ui import (panels, preferences, properties)
modules = (
panels,
preferences,
properties
)
if 'bpy' in locals():
import importlib
for mod in modules:
importlib.reload(mod)
import bpy
def register():
for mod in modules:
mod.register()
def unregister():
for mod in modules:
mod.unregister()