└── io_mesh_qfmd ├── TODO ├── __init__.py ├── md2 ├── __init__.py ├── export_md2.py ├── import_md2.py └── md2.py ├── md3 ├── __init__.py ├── export_md3.py ├── import_md3.py └── md3.py ├── mdl ├── __init__.py ├── export_mdl.py ├── hexen2pal.py ├── import_mdl.py ├── mdl.py ├── qfplist.py └── quakepal.py └── quakenorm.py /io_mesh_qfmd/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/TODO -------------------------------------------------------------------------------- /io_mesh_qfmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/__init__.py -------------------------------------------------------------------------------- /io_mesh_qfmd/md2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io_mesh_qfmd/md2/export_md2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/md2/export_md2.py -------------------------------------------------------------------------------- /io_mesh_qfmd/md2/import_md2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/md2/import_md2.py -------------------------------------------------------------------------------- /io_mesh_qfmd/md2/md2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/md2/md2.py -------------------------------------------------------------------------------- /io_mesh_qfmd/md3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io_mesh_qfmd/md3/export_md3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/md3/export_md3.py -------------------------------------------------------------------------------- /io_mesh_qfmd/md3/import_md3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/md3/import_md3.py -------------------------------------------------------------------------------- /io_mesh_qfmd/md3/md3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/md3/md3.py -------------------------------------------------------------------------------- /io_mesh_qfmd/mdl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io_mesh_qfmd/mdl/export_mdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/mdl/export_mdl.py -------------------------------------------------------------------------------- /io_mesh_qfmd/mdl/hexen2pal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/mdl/hexen2pal.py -------------------------------------------------------------------------------- /io_mesh_qfmd/mdl/import_mdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/mdl/import_mdl.py -------------------------------------------------------------------------------- /io_mesh_qfmd/mdl/mdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/mdl/mdl.py -------------------------------------------------------------------------------- /io_mesh_qfmd/mdl/qfplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/mdl/qfplist.py -------------------------------------------------------------------------------- /io_mesh_qfmd/mdl/quakepal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/mdl/quakepal.py -------------------------------------------------------------------------------- /io_mesh_qfmd/quakenorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paril/mdl-md2-md3-for-blender/HEAD/io_mesh_qfmd/quakenorm.py --------------------------------------------------------------------------------