16 lines
265 B
Python
16 lines
265 B
Python
|
# 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()
|