├── .gitattributes ├── LICENSE ├── README.md └── advancedfx ├── __init__.py ├── export_agr2fbx.py ├── export_bvh.py ├── export_cam.py ├── import_agr.py ├── import_bvh.py ├── import_cam.py ├── readme.txt └── utils.py /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/README.md -------------------------------------------------------------------------------- /advancedfx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/__init__.py -------------------------------------------------------------------------------- /advancedfx/export_agr2fbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/export_agr2fbx.py -------------------------------------------------------------------------------- /advancedfx/export_bvh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/export_bvh.py -------------------------------------------------------------------------------- /advancedfx/export_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/export_cam.py -------------------------------------------------------------------------------- /advancedfx/import_agr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/import_agr.py -------------------------------------------------------------------------------- /advancedfx/import_bvh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/import_bvh.py -------------------------------------------------------------------------------- /advancedfx/import_cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/import_cam.py -------------------------------------------------------------------------------- /advancedfx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/readme.txt -------------------------------------------------------------------------------- /advancedfx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advancedfx/afx-blender-scripts/HEAD/advancedfx/utils.py --------------------------------------------------------------------------------