├── .gitignore ├── LICENSE.txt ├── README.md ├── bvh2fbx.bat ├── bvh2fbx.sh └── convert_fbx.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.bvh 2 | *.fbx -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsantiago/bvh2fbx/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsantiago/bvh2fbx/HEAD/README.md -------------------------------------------------------------------------------- /bvh2fbx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsantiago/bvh2fbx/HEAD/bvh2fbx.bat -------------------------------------------------------------------------------- /bvh2fbx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsantiago/bvh2fbx/HEAD/bvh2fbx.sh -------------------------------------------------------------------------------- /convert_fbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcsantiago/bvh2fbx/HEAD/convert_fbx.py --------------------------------------------------------------------------------