├── .gitignore ├── ExportShape ├── AdjustedJointsLoc.txt ├── ExportShape.fbx ├── ExportShape.py ├── GeometryInfo.txt ├── ImprovedGeometryInfo.txt ├── JointsSequence.json ├── PrimaryJointsLoc.txt ├── ShapePara.txt ├── SkinWeights.txt ├── old.json ├── smplx_uv.obj └── vertexLoc.txt ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/.gitignore -------------------------------------------------------------------------------- /ExportShape/AdjustedJointsLoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/AdjustedJointsLoc.txt -------------------------------------------------------------------------------- /ExportShape/ExportShape.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/ExportShape.fbx -------------------------------------------------------------------------------- /ExportShape/ExportShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/ExportShape.py -------------------------------------------------------------------------------- /ExportShape/GeometryInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/GeometryInfo.txt -------------------------------------------------------------------------------- /ExportShape/ImprovedGeometryInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/ImprovedGeometryInfo.txt -------------------------------------------------------------------------------- /ExportShape/JointsSequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/JointsSequence.json -------------------------------------------------------------------------------- /ExportShape/PrimaryJointsLoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/PrimaryJointsLoc.txt -------------------------------------------------------------------------------- /ExportShape/ShapePara.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/ShapePara.txt -------------------------------------------------------------------------------- /ExportShape/SkinWeights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/SkinWeights.txt -------------------------------------------------------------------------------- /ExportShape/old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/old.json -------------------------------------------------------------------------------- /ExportShape/smplx_uv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/smplx_uv.obj -------------------------------------------------------------------------------- /ExportShape/vertexLoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/ExportShape/vertexLoc.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhaiyiwang/Smplx2FBX/HEAD/README.md --------------------------------------------------------------------------------