From 41faa5173864d41b0f7621c078a4956ead40c067 Mon Sep 17 00:00:00 2001 From: JannisX11 Date: Sun, 16 Feb 2025 19:01:31 +0100 Subject: [PATCH] Fix texture not updating when moving cube in per group texture format --- js/outliner/outliner.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/outliner/outliner.js b/js/outliner/outliner.js index 219cc467..6ffd149d 100644 --- a/js/outliner/outliner.js +++ b/js/outliner/outliner.js @@ -886,6 +886,9 @@ function moveOutlinerSelectionTo(item, target, event, order) { } } else { item.preview_controller.updateTransform(item); + if (Format.per_group_texture && item.preview_controller.updateFaces) { + item.preview_controller.updateFaces(item); + } } } }