-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy path__init__.py
More file actions
30 lines (28 loc) · 767 Bytes
/
Copy path__init__.py
File metadata and controls
30 lines (28 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
if "bpy" in locals():
import importlib
importlib.reload(license_templates)
importlib.reload(node_group_gatherer)
importlib.reload(node_settings)
importlib.reload(node_tree_exporter)
importlib.reload(ntp_operator)
importlib.reload(ntp_options)
importlib.reload(utils)
importlib.reload(compositor)
importlib.reload(geometry)
importlib.reload(shader)
else:
from . import license_templates
from . import node_group_gatherer
from . import node_settings
from . import node_tree_exporter
from . import ntp_operator
from . import ntp_options
from . import utils
from . import compositor
from . import geometry
from . import shader
import bpy
modules = [
ntp_options,
ntp_operator
]