diff options
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/__init__.py b/__init__.py index b360c57..5f5b5fc 100644 --- a/__init__.py +++ b/__init__.py @@ -19,13 +19,15 @@ from bpy.app.handlers import persistent # custom CSV animation file (for BCK) exporter/importer @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 +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 + from . import obj_kcl_export # "custom" exporter for OBJ files (Collision) + from . import obj_neokclcreate_import # "custom" importer for OBJ files (Colllision, NeoKCLCreate) # ~ from . import csv_anim_bck_export # exporter for CSV files for BCK conversion # ~ from . import csv_anim_bck_import # importer for CSV files from BCK animation |