├── .gitignore ├── 100style_character.fbx ├── Geno.fbx ├── Geno.mb ├── Geno_bind.bvh ├── Geno_bind.fbx ├── Geno_stance.bvh ├── Geno_stance.fbx ├── LICENSE.txt ├── README.md ├── export_bvh.py ├── export_fbx.py └── mirror.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/.gitignore -------------------------------------------------------------------------------- /100style_character.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/100style_character.fbx -------------------------------------------------------------------------------- /Geno.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/Geno.fbx -------------------------------------------------------------------------------- /Geno.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/Geno.mb -------------------------------------------------------------------------------- /Geno_bind.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/Geno_bind.bvh -------------------------------------------------------------------------------- /Geno_bind.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/Geno_bind.fbx -------------------------------------------------------------------------------- /Geno_stance.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/Geno_stance.bvh -------------------------------------------------------------------------------- /Geno_stance.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/Geno_stance.fbx -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/README.md -------------------------------------------------------------------------------- /export_bvh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/export_bvh.py -------------------------------------------------------------------------------- /export_fbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/export_fbx.py -------------------------------------------------------------------------------- /mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangeduck/100style-retarget/HEAD/mirror.py --------------------------------------------------------------------------------