The HY 3D 2.0 MV Turbo workflow is designed to transform multiple 2D images into a cohesive 3D model using the advanced Hunyuan3D 2.0 MV Turbo model. This workflow leverages a series of specialized nodes such as KSampler, CLIPVisionEncode, and VAEDecodeHunyuan3D to process and synthesize images from different angles into a detailed 3D representation. The process starts with the ImageOnlyCheckpointLoader and LoadImage nodes, which import and prepare your images. The Hunyuan3Dv2ConditioningMultiView node then conditions these images, ensuring that the 3D model reflects accurate spatial relationships and textures. Finally, the VoxelToMesh node converts the processed data into a mesh format, ready for export via the SaveGLB node.
Technically, this workflow excels by using multi-view conditioning to enhance the depth and realism of the generated 3D models. The integration of Tencent's Hunyuan3D model ensures high fidelity in capturing intricate details from the input images. This makes the workflow particularly useful for applications in virtual reality, game development, and digital content creation, where realistic 3D models are essential. The flexibility of nodes like ModelSamplingAuraFlow and FluxGuidance allows users to fine-tune the output, achieving the best possible results tailored to specific needs.
API
Use this workflow from code
Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.
Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
// Install (beta)
npm i @comfyorg/sdk
// Run "HY 3D 2.0 MV Turbo" (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("3d_hunyuan3d_multiview_to_model_turbo_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("82", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("67")[0].toFile("output.png"); // SaveGLBThe SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).
Comfy Cloud API access requires a plan with an API key.
FAQ















