gitextract_5foufhgw/ ├── .clang-format ├── .github/ │ ├── actions/ │ │ ├── build/ │ │ │ └── action.yml │ │ └── sign/ │ │ └── action.yml │ └── workflows/ │ └── builds.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── SConstruct ├── addons/ │ └── motion_matching/ │ └── gdmotionmatching.gdextension ├── config.py ├── doc_classes/ │ ├── DampedSkeletonModifier.xml │ ├── MMAnimationLibrary.xml │ ├── MMAnimationNode.xml │ ├── MMBoneDataFeature.xml │ ├── MMCharacter.xml │ ├── MMClampSynchronizer.xml │ ├── MMFeature.xml │ ├── MMMixSynchronizer.xml │ ├── MMQueryInput.xml │ ├── MMRootMotionSynchronizer.xml │ ├── MMSynchronizer.xml │ └── MMTrajectoryFeature.xml ├── methods.py └── src/ ├── algo/ │ ├── kd_tree.cpp │ └── kd_tree.h ├── circular_buffer.h ├── common.h ├── editor/ │ ├── animation_post_import_plugin.cpp │ ├── animation_post_import_plugin.h │ ├── animation_tree_handler_plugin.cpp │ ├── animation_tree_handler_plugin.h │ ├── mm_data_tab.cpp │ ├── mm_data_tab.h │ ├── mm_editor.cpp │ ├── mm_editor.h │ ├── mm_editor_gizmo_plugin.cpp │ ├── mm_editor_gizmo_plugin.h │ ├── mm_editor_plugin.cpp │ ├── mm_editor_plugin.h │ ├── mm_visualization_tab.cpp │ └── mm_visualization_tab.h ├── features/ │ ├── mm_bone_data_feature.cpp │ ├── mm_bone_data_feature.h │ ├── mm_feature.cpp │ ├── mm_feature.h │ ├── mm_trajectory_feature.cpp │ └── mm_trajectory_feature.h ├── math/ │ ├── hash.h │ ├── spring.hpp │ ├── stats.hpp │ └── transforms.h ├── mm_animation_library.cpp ├── mm_animation_library.h ├── mm_animation_node.cpp ├── mm_animation_node.h ├── mm_bone_state.h ├── mm_character.cpp ├── mm_character.h ├── mm_query.h ├── mm_trajectory_point.cpp ├── mm_trajectory_point.h ├── modifiers/ │ ├── damped_skeleton_modifier.cpp │ └── damped_skeleton_modifier.h ├── register_types.cpp ├── register_types.h └── synchronizers/ ├── mm_clamp_synchronizer.cpp ├── mm_clamp_synchronizer.h ├── mm_mix_synchronizer.cpp ├── mm_mix_synchronizer.h ├── mm_rootmotion_synchronizer.cpp ├── mm_rootmotion_synchronizer.h ├── mm_synchronizer.cpp └── mm_synchronizer.h