From 70564aebb6d17e154d2c09aae33fbfb718812577 Mon Sep 17 00:00:00 2001 From: missionfloyd Date: Mon, 10 Apr 2023 02:38:46 -0600 Subject: [PATCH] Name split node outputs --- comfy_extras/nodes_post_processing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/comfy_extras/nodes_post_processing.py b/comfy_extras/nodes_post_processing.py index 163139fef..9e7e8b034 100644 --- a/comfy_extras/nodes_post_processing.py +++ b/comfy_extras/nodes_post_processing.py @@ -373,6 +373,8 @@ class Split: } RETURN_TYPES = ("IMAGE", "IMAGE", "IMAGE") + RETURN_NAMES = ("Red", "Green", "Blue") + FUNCTION = "split" CATEGORY = "image/postprocessing"