2024-05-18 11:09:47 +00:00
|
|
|
import bpy
|
|
|
|
from .readthedocs import GB_OT_readthedocs
|
|
|
|
from .export2godot import GB_OT_export2godot
|
2023-03-21 20:39:30 +00:00
|
|
|
|
|
|
|
classes = (
|
2024-05-18 11:09:47 +00:00
|
|
|
GB_OT_readthedocs,
|
|
|
|
GB_OT_export2godot,
|
2023-03-21 20:39:30 +00:00
|
|
|
)
|
|
|
|
|
2023-03-29 10:43:53 +00:00
|
|
|
|
2023-03-21 20:39:30 +00:00
|
|
|
def register_operators():
|
2023-03-29 10:43:53 +00:00
|
|
|
from bpy.utils import register_class
|
|
|
|
for cls in classes:
|
|
|
|
register_class(cls)
|
2023-03-21 20:39:30 +00:00
|
|
|
|
|
|
|
def unregister_operators():
|
2023-03-29 10:43:53 +00:00
|
|
|
from bpy.utils import unregister_class
|
|
|
|
for cls in classes:
|
|
|
|
unregister_class(cls)
|