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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-09-28 12:51:33 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-09-29 11:03:27 +0300
commit73784e78de99cb647870cbd93ef497f3e437a1a6 (patch)
tree8271cbc2766c9d02e8bcdf8ba837dfd47336b136 /rigify/utils/__init__.py
parentc34c7c0c4a328176813f3e5cc2ed672a3ae292b2 (diff)
Rigify: implement a new reload process to support Reload Scripts properly.
Due to dynamically loaded rig modules, Rigify has to implement reload by purging all non-core modules from memory, or class inheritance checks won't work right after reload.
Diffstat (limited to 'rigify/utils/__init__.py')
-rw-r--r--rigify/utils/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rigify/utils/__init__.py b/rigify/utils/__init__.py
index f45acded..f2444d1c 100644
--- a/rigify/utils/__init__.py
+++ b/rigify/utils/__init__.py
@@ -2,6 +2,8 @@
# that expects a single utils.py file. New code should import directly from
# the modules that contain the utilities. Also, don't add more imports here.
+from . import errors, misc, rig, naming, bones, collections, layers, widgets, widgets_basic, widgets_special
+
from .errors import MetarigError
from .misc import angle_on_plane, linsrgb_to_srgb, gamma_correct, copy_attributes