├── .gitignore ├── README.md └── kingpin ├── __init__.py ├── anim.py ├── common_kp.py ├── export_kp.py ├── import_kp.py ├── pcx_file.py ├── q3_to_kp.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/README.md -------------------------------------------------------------------------------- /kingpin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/__init__.py -------------------------------------------------------------------------------- /kingpin/anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/anim.py -------------------------------------------------------------------------------- /kingpin/common_kp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/common_kp.py -------------------------------------------------------------------------------- /kingpin/export_kp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/export_kp.py -------------------------------------------------------------------------------- /kingpin/import_kp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/import_kp.py -------------------------------------------------------------------------------- /kingpin/pcx_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/pcx_file.py -------------------------------------------------------------------------------- /kingpin/q3_to_kp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/q3_to_kp.py -------------------------------------------------------------------------------- /kingpin/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypov8/blender_kingpin_models/HEAD/kingpin/tools.py --------------------------------------------------------------------------------