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: 22ed284a3fc13cb6ac9f4b7f498eba59b403b131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# SPDX-License-Identifier: GPL-2.0-or-later

# <pep8-80 compliant>

__author__ = "Nutti <nutti.metro@gmail.com>"
__status__ = "production"
__version__ = "6.5"
__date__ = "6 Mar 2021"

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

import bpy