Added Recraft Style - Infinite Style Library node (#82)

This commit is contained in:
Jedrzej Kosinski 2025-04-30 18:00:09 -05:00 committed by Robin Huang
parent b44058276c
commit 8da42edc9a

View File

@ -241,6 +241,7 @@ class RecraftColorRGBNode:
""" """
RETURN_TYPES = (RecraftIO.COLOR,) RETURN_TYPES = (RecraftIO.COLOR,)
DESCRIPTION = cleandoc(__doc__ or "") # Handle potential None value
RETURN_NAMES = ("recraft_color",) RETURN_NAMES = ("recraft_color",)
FUNCTION = "create_color" FUNCTION = "create_color"
CATEGORY = "api node/image/Recraft" CATEGORY = "api node/image/Recraft"
@ -286,6 +287,7 @@ class RecraftControlsNode:
RETURN_TYPES = (RecraftIO.CONTROLS,) RETURN_TYPES = (RecraftIO.CONTROLS,)
RETURN_NAMES = ("recraft_controls",) RETURN_NAMES = ("recraft_controls",)
DESCRIPTION = cleandoc(__doc__ or "") # Handle potential None value
FUNCTION = "create_controls" FUNCTION = "create_controls"
CATEGORY = "api node/image/Recraft" CATEGORY = "api node/image/Recraft"