Initial commit

This commit is contained in:
2023-03-14 13:38:04 +01:00
commit 2973fd85d8
16 changed files with 1922 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# SPDX-License-Identifier: GPL-2.0-or-later
from vse_toolbox.operators import operators
if 'bpy' in locals():
import importlib
importlib.reload(operators)
import bpy
def register():
operators.register()
def unregister():
operators.unregister()