diff options
author | Isaac <isaclien9752@gmail.com> | 2024-08-24 18:42:19 -0400 |
---|---|---|
committer | Isaac <isaclien9752@gmail.com> | 2024-08-24 18:42:19 -0400 |
commit | 5297d6b2cca54fab12ed62b96df8207f10f8c02c (patch) | |
tree | 90c596001286188b5d0fa33c8902c50f495212a9 /__init__.py | |
parent | 17fd2304270b2ef619cceb980b9f49cb656a6d13 (diff) | |
download | blenxy-5297d6b2cca54fab12ed62b96df8207f10f8c02c.tar.gz blenxy-5297d6b2cca54fab12ed62b96df8207f10f8c02c.zip |
attempt to make blenxy install its required modules by itself
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py index 5d783d2..b360c57 100644 --- a/__init__.py +++ b/__init__.py @@ -22,7 +22,7 @@ from bpy.app.handlers import persistent def set_blenxy_env(dummy): # "dummy" is a variable that is somehow # passed to set_blenxy_env when called by # bpy.app.handlers.load_post.append - + from . import required_modules # install needed modules for bundled python (awful) from . import basic_settings # settings blenxy has from . import collada_superbmd_import # "custom" importer for SuperBMD collada files from . import collada_superbmd_export # "custom" exporter for SuperBMD collada files |