mirror of
https://git.datalinker.icu/kijai/ComfyUI-Hunyuan3DWrapper.git
synced 2026-05-01 21:41:20 +08:00
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.
This commit is contained in:
parent
cbe2837e50
commit
4e72abc39a
4
nodes.py
4
nodes.py
@ -1297,8 +1297,8 @@ class Hy3DGenerateMeshMultiView():
|
|||||||
view_dict = {
|
view_dict = {
|
||||||
'front': front,
|
'front': front,
|
||||||
'left': left,
|
'left': left,
|
||||||
'right': right,
|
'back': back,
|
||||||
'back': back
|
'right': right
|
||||||
}
|
}
|
||||||
|
|
||||||
if scheduler == "FlowMatchEulerDiscreteScheduler":
|
if scheduler == "FlowMatchEulerDiscreteScheduler":
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user