├── .gitignore ├── .run ├── main mixamo.run.xml └── main synty.run.xml ├── LICENSE ├── docs ├── animations.png ├── character.png ├── import-settings.png └── success.png ├── make_animation_library.sh ├── readme.md └── src ├── blender ├── fbx_to_glb.py └── fbx_to_glb.sh ├── godot ├── gltf_to_animation_library.sh ├── project_template │ ├── .gitignore │ ├── anims.glb.import │ └── project.godot └── project_template_43 │ ├── .gitignore │ ├── anims.glb.import │ ├── bone_map.tres │ └── project.godot └── utils └── parseArgs.sh /.gitignore: -------------------------------------------------------------------------------- 1 | test/ 2 | test.sh -------------------------------------------------------------------------------- /.run/main mixamo.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/.run/main mixamo.run.xml -------------------------------------------------------------------------------- /.run/main synty.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/.run/main synty.run.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/animations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/docs/animations.png -------------------------------------------------------------------------------- /docs/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/docs/character.png -------------------------------------------------------------------------------- /docs/import-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/docs/import-settings.png -------------------------------------------------------------------------------- /docs/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/docs/success.png -------------------------------------------------------------------------------- /make_animation_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/make_animation_library.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/readme.md -------------------------------------------------------------------------------- /src/blender/fbx_to_glb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/blender/fbx_to_glb.py -------------------------------------------------------------------------------- /src/blender/fbx_to_glb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/blender/fbx_to_glb.sh -------------------------------------------------------------------------------- /src/godot/gltf_to_animation_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/godot/gltf_to_animation_library.sh -------------------------------------------------------------------------------- /src/godot/project_template/.gitignore: -------------------------------------------------------------------------------- 1 | anims.glb 2 | .godot 3 | -------------------------------------------------------------------------------- /src/godot/project_template/anims.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/godot/project_template/anims.glb.import -------------------------------------------------------------------------------- /src/godot/project_template/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/godot/project_template/project.godot -------------------------------------------------------------------------------- /src/godot/project_template_43/.gitignore: -------------------------------------------------------------------------------- 1 | anims.glb 2 | .godot 3 | -------------------------------------------------------------------------------- /src/godot/project_template_43/anims.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/godot/project_template_43/anims.glb.import -------------------------------------------------------------------------------- /src/godot/project_template_43/bone_map.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/godot/project_template_43/bone_map.tres -------------------------------------------------------------------------------- /src/godot/project_template_43/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/godot/project_template_43/project.godot -------------------------------------------------------------------------------- /src/utils/parseArgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowarin/godot-anim-lib-export/HEAD/src/utils/parseArgs.sh --------------------------------------------------------------------------------