Merge pull request #101448 from TokageItLab/save-retarget

Add missing `TOOLS_ENABLED` block to `RetargetModifier3D`
This commit is contained in:
Rémi Verschelde 2025-01-12 18:07:25 +01:00
commit c5a62c36f5

View file

@ -452,9 +452,11 @@ void RetargetModifier3D::_notification(int p_what) {
case NOTIFICATION_ENTER_TREE: {
_update_child_skeletons();
} break;
#ifdef TOOLS_ENABLED
case NOTIFICATION_EDITOR_PRE_SAVE: {
_reset_child_skeleton_poses();
} break;
#endif // TOOLS_ENABLED
case NOTIFICATION_EXIT_TREE: {
_reset_child_skeletons();
} break;