├── .gitignore ├── LICENSE ├── README.md ├── mesh_morpher.py └── vertex_animation.py /.gitignore: -------------------------------------------------------------------------------- 1 | /venv 2 | /.vscode 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/unreal_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/unreal_tools/HEAD/README.md -------------------------------------------------------------------------------- /mesh_morpher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/unreal_tools/HEAD/mesh_morpher.py -------------------------------------------------------------------------------- /vertex_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanorax/unreal_tools/HEAD/vertex_animation.py --------------------------------------------------------------------------------