├── .gitattributes ├── .gitignore ├── BoneUtil.py ├── LICENSE ├── README.md ├── __init__.py ├── blender_manifest.toml ├── datatypes ├── AnimationTypes.py ├── CommonTypes.py ├── EffectTypes.py ├── EntityTypes.py ├── MapTypes.py ├── MaterialTypes.py ├── ModelTypes.py └── __init__.py ├── importer ├── ImportAnimation.py ├── ImportEntity.py ├── ImportMap.py ├── ImportMaterial.py ├── ImportModel.py ├── __init__.py └── blender │ ├── BLAnimation.py │ ├── BLEntity.py │ ├── BLMap.py │ ├── BLMaterial.py │ ├── BLModel.py │ ├── BLUtils.py │ ├── __init__.py │ ├── addon_helper.py │ ├── blender_helper.py │ └── shader_library_handler.py ├── library.blend ├── readers ├── BinaryUtil.py ├── OWAnimReader.py ├── OWEntityReader.py ├── OWMapReader.py ├── OWMaterialReader.py ├── OWModelReader.py ├── PathUtil.py └── __init__.py ├── shader_metadata.py └── ui ├── BlenderManager.py ├── DatatoolLibHandler.py ├── DatatoolLibUtil.py ├── ImportAnimationOperator.py ├── ImportEntityOperator.py ├── ImportMapOperator.py ├── ImportMapWizard.py ├── ImportMaterialOperator.py ├── ImportModelOperator.py ├── ImportSkinOperator.py ├── Preferences.py ├── SettingTypes.py ├── UIUtil.py ├── UtilityOperators.py ├── __init__.py ├── filehandler_operators.py └── shader_library_operators.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.osl linguist-language=hlsl 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/.gitignore -------------------------------------------------------------------------------- /BoneUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/BoneUtil.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /datatypes/AnimationTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/AnimationTypes.py -------------------------------------------------------------------------------- /datatypes/CommonTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/CommonTypes.py -------------------------------------------------------------------------------- /datatypes/EffectTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/EffectTypes.py -------------------------------------------------------------------------------- /datatypes/EntityTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/EntityTypes.py -------------------------------------------------------------------------------- /datatypes/MapTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/MapTypes.py -------------------------------------------------------------------------------- /datatypes/MaterialTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/MaterialTypes.py -------------------------------------------------------------------------------- /datatypes/ModelTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/ModelTypes.py -------------------------------------------------------------------------------- /datatypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/datatypes/__init__.py -------------------------------------------------------------------------------- /importer/ImportAnimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/ImportAnimation.py -------------------------------------------------------------------------------- /importer/ImportEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/ImportEntity.py -------------------------------------------------------------------------------- /importer/ImportMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/ImportMap.py -------------------------------------------------------------------------------- /importer/ImportMaterial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/ImportMaterial.py -------------------------------------------------------------------------------- /importer/ImportModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/ImportModel.py -------------------------------------------------------------------------------- /importer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/__init__.py -------------------------------------------------------------------------------- /importer/blender/BLAnimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/BLAnimation.py -------------------------------------------------------------------------------- /importer/blender/BLEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/BLEntity.py -------------------------------------------------------------------------------- /importer/blender/BLMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/BLMap.py -------------------------------------------------------------------------------- /importer/blender/BLMaterial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/BLMaterial.py -------------------------------------------------------------------------------- /importer/blender/BLModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/BLModel.py -------------------------------------------------------------------------------- /importer/blender/BLUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/BLUtils.py -------------------------------------------------------------------------------- /importer/blender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/__init__.py -------------------------------------------------------------------------------- /importer/blender/addon_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/addon_helper.py -------------------------------------------------------------------------------- /importer/blender/blender_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/blender_helper.py -------------------------------------------------------------------------------- /importer/blender/shader_library_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/importer/blender/shader_library_handler.py -------------------------------------------------------------------------------- /library.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/library.blend -------------------------------------------------------------------------------- /readers/BinaryUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/BinaryUtil.py -------------------------------------------------------------------------------- /readers/OWAnimReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/OWAnimReader.py -------------------------------------------------------------------------------- /readers/OWEntityReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/OWEntityReader.py -------------------------------------------------------------------------------- /readers/OWMapReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/OWMapReader.py -------------------------------------------------------------------------------- /readers/OWMaterialReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/OWMaterialReader.py -------------------------------------------------------------------------------- /readers/OWModelReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/OWModelReader.py -------------------------------------------------------------------------------- /readers/PathUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/PathUtil.py -------------------------------------------------------------------------------- /readers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/readers/__init__.py -------------------------------------------------------------------------------- /shader_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/shader_metadata.py -------------------------------------------------------------------------------- /ui/BlenderManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/BlenderManager.py -------------------------------------------------------------------------------- /ui/DatatoolLibHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/DatatoolLibHandler.py -------------------------------------------------------------------------------- /ui/DatatoolLibUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/DatatoolLibUtil.py -------------------------------------------------------------------------------- /ui/ImportAnimationOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/ImportAnimationOperator.py -------------------------------------------------------------------------------- /ui/ImportEntityOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/ImportEntityOperator.py -------------------------------------------------------------------------------- /ui/ImportMapOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/ImportMapOperator.py -------------------------------------------------------------------------------- /ui/ImportMapWizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/ImportMapWizard.py -------------------------------------------------------------------------------- /ui/ImportMaterialOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/ImportMaterialOperator.py -------------------------------------------------------------------------------- /ui/ImportModelOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/ImportModelOperator.py -------------------------------------------------------------------------------- /ui/ImportSkinOperator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/ImportSkinOperator.py -------------------------------------------------------------------------------- /ui/Preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/Preferences.py -------------------------------------------------------------------------------- /ui/SettingTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/SettingTypes.py -------------------------------------------------------------------------------- /ui/UIUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/UIUtil.py -------------------------------------------------------------------------------- /ui/UtilityOperators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/UtilityOperators.py -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/__init__.py -------------------------------------------------------------------------------- /ui/filehandler_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/filehandler_operators.py -------------------------------------------------------------------------------- /ui/shader_library_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtools/io_scene_owm/HEAD/ui/shader_library_operators.py --------------------------------------------------------------------------------