Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « utils « magic_uv - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ce7f34a5a7cd05d2a6c94c3ef6e8228100e5b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# SPDX-License-Identifier: GPL-2.0-or-later

# <pep8-80 compliant>

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "6.6"
__date__ = "22 Apr 2022"

if "bpy" in locals():
    import importlib
    importlib.reload(bl_class_registry)
    importlib.reload(compatibility)
    importlib.reload(graph)
    importlib.reload(property_class_registry)
else:
    from . import bl_class_registry
    from . import compatibility
    from . import graph
    from . import property_class_registry

import bpy