mark node as beta

This commit is contained in:
bymyself 2025-02-11 01:40:55 -07:00
parent 57be03b31f
commit e003633be0

View File

@ -1769,7 +1769,7 @@ class LoadImageOutput(LoadImage):
def INPUT_TYPES(s): def INPUT_TYPES(s):
return { return {
"required": { "required": {
"image": ([], { "image": ("COMBO", {
"image_upload": True, "image_upload": True,
"image_folder": "output", "image_folder": "output",
"remote": { "remote": {
@ -1782,6 +1782,7 @@ class LoadImageOutput(LoadImage):
} }
DESCRIPTION = "Load an image from the output folder. When the refresh button is clicked, the node will update the image list and automatically select the first image, allowing for easy iteration." DESCRIPTION = "Load an image from the output folder. When the refresh button is clicked, the node will update the image list and automatically select the first image, allowing for easy iteration."
EXPERIMENTAL = True
FUNCTION = "load_image_output" FUNCTION = "load_image_output"
def load_image_output(self, image): def load_image_output(self, image):