├── .gitignore ├── README.md ├── convertUI.py ├── fbxExporterControler.py ├── fbxExporterUI.py ├── fbxExporterUtil.py ├── icons └── animationExporter.png ├── presets ├── IOFBXExportAnimation.fbxexportpreset └── IOFBXExportGeometry.fbxexportpreset └── savePath.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/README.md -------------------------------------------------------------------------------- /convertUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/convertUI.py -------------------------------------------------------------------------------- /fbxExporterControler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/fbxExporterControler.py -------------------------------------------------------------------------------- /fbxExporterUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/fbxExporterUI.py -------------------------------------------------------------------------------- /fbxExporterUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/fbxExporterUtil.py -------------------------------------------------------------------------------- /icons/animationExporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/icons/animationExporter.png -------------------------------------------------------------------------------- /presets/IOFBXExportAnimation.fbxexportpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/presets/IOFBXExportAnimation.fbxexportpreset -------------------------------------------------------------------------------- /presets/IOFBXExportGeometry.fbxexportpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunxiGit/fbxExportTool/HEAD/presets/IOFBXExportGeometry.fbxexportpreset -------------------------------------------------------------------------------- /savePath.txt: -------------------------------------------------------------------------------- 1 | d:/ --------------------------------------------------------------------------------