From fcb389a35a5c9e14e407853777f1948b0588d5a5 Mon Sep 17 00:00:00 2001 From: JannisX11 Date: Sat, 22 Apr 2023 23:51:11 +0200 Subject: [PATCH] Fix bones not updating when baking animation into model --- js/animations/animation.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/animations/animation.js b/js/animations/animation.js index 96ea250b..e486309d 100644 --- a/js/animations/animation.js +++ b/js/animations/animation.js @@ -1944,7 +1944,8 @@ BARS.defineActions(function() { offset(node); }); - Modes.options.edit.select() + Modes.options.edit.select(); + Canvas.updateAllBones(); Undo.finishEdit('Bake animation into model') } })