
The Equirectangular HDR Skybox Generator workflow is designed to create high-dynamic-range (HDR) equirectangular images, ideal for use as skyboxes or in look development for game environments. This workflow leverages advanced AI models such as Qwen-Image and SeedVR2, alongside custom nodes like comfyui_essentials and seedvr2_videoupscaler, to produce high-quality, realistic textures. The process begins with the CLIPTextEncode node, which interprets the input prompt to guide the image generation process. The workflow then utilizes the ModelSamplingAuraFlow node to sample the image data, which is further refined by the KSampler and UNETLoader nodes. The VAELoader and VAEDecode nodes play a crucial role in encoding and decoding the image data, ensuring the final output is both high-resolution and visually accurate. Finally, the workflow includes nodes like SaveImage and StringConcatenate to manage output and file naming, ensuring seamless integration into game development pipelines.
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.
GET https://comfy.org/workflows/download/f5199b5121f3.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run "Equirectangular HDR Skybox Generator" (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("templates_text_prompt_to_360hdr.app_api.json")
wf.set_input("3", "text", "your prompt here") # CLIPTextEncode
job = client.run(wf)
for output in job.get_outputs("49"): # SaveImage
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














