diff options
author | Isaac <isaclien9752@gmail.com> | 2025-08-08 15:03:57 -0400 |
---|---|---|
committer | Isaac <isaclien9752@gmail.com> | 2025-08-08 15:03:57 -0400 |
commit | dc612a18b60341b233fcac00f99405d98b61c01a (patch) | |
tree | 0a914f90bb69ed665287ca8701d000aa8c470da8 /__init__.py | |
parent | 46fb63ea8d3c33d5cb5914a05998c8f6ff74abea (diff) | |
download | blenxy-dc612a18b60341b233fcac00f99405d98b61c01a.tar.gz blenxy-dc612a18b60341b233fcac00f99405d98b61c01a.zip |
small stuff on collada / OBJ exporter for KCL / importer for NeoKCLCreate OBJs
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 |