├── .gitignore ├── LICENSE.md ├── README.md ├── maya └── example.ma ├── python ├── helper functions.py ├── ikrig.py └── utils.py └── unreal ├── CSVtoTArray.cpp ├── CSVtoTArray.h ├── IKRigDecoder.cpp └── IKRigDecoder.h /.gitignore: -------------------------------------------------------------------------------- 1 | /bkp/ 2 | /.vscode/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/README.md -------------------------------------------------------------------------------- /maya/example.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/maya/example.ma -------------------------------------------------------------------------------- /python/helper functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/python/helper functions.py -------------------------------------------------------------------------------- /python/ikrig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/python/ikrig.py -------------------------------------------------------------------------------- /python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/python/utils.py -------------------------------------------------------------------------------- /unreal/CSVtoTArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/unreal/CSVtoTArray.cpp -------------------------------------------------------------------------------- /unreal/CSVtoTArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/unreal/CSVtoTArray.h -------------------------------------------------------------------------------- /unreal/IKRigDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/unreal/IKRigDecoder.cpp -------------------------------------------------------------------------------- /unreal/IKRigDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoeb/ikrig/HEAD/unreal/IKRigDecoder.h --------------------------------------------------------------------------------