From 4e72abc39a2abe448df7da649e0d3a543bed74e1 Mon Sep 17 00:00:00 2001 From: Adrian Lundberg Date: Thu, 21 Aug 2025 15:01:31 +0200 Subject: [PATCH] improve mv output quality when right angle input provided re-order mv index to align with shapegen expectation - Switch the order of right and back in Hy3DGenerateMeshMultiView's view_dict to match the order expected by Shapegen's conditioner.py: self.view2idx = { 'front': 0, 'left': 1, 'back': 2, 'right': 3 } - This improves the generated quality for those areas. - No workflow update needed as the expected input order remains the same. --- nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes.py b/nodes.py index 115331f..a116c8b 100644 --- a/nodes.py +++ b/nodes.py @@ -1297,8 +1297,8 @@ class Hy3DGenerateMeshMultiView(): view_dict = { 'front': front, 'left': left, - 'right': right, - 'back': back + 'back': back, + 'right': right } if scheduler == "FlowMatchEulerDiscreteScheduler":