From a18989ba03cc63012658880867fb82a807a0e990 Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Wed, 28 Jan 2026 10:31:08 +0200 Subject: [PATCH] add important comment to the code --- comfy_api_nodes/util/download_helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/comfy_api_nodes/util/download_helpers.py b/comfy_api_nodes/util/download_helpers.py index dd124f8d4..daf44aa8b 100644 --- a/comfy_api_nodes/util/download_helpers.py +++ b/comfy_api_nodes/util/download_helpers.py @@ -289,6 +289,8 @@ async def download_url_to_file_3d( ) if task_id is not None: + # This is only for backward compatability with current behavior when every 3D node is output node + # All new API nodes should not use "task_id" and instead users should use "SaveGLB" node to save results output_dir = Path(get_output_directory()) output_path = output_dir / f"{task_id}.{file_format}" output_path.write_bytes(data.getvalue())