ComfyUI_Comfyroll_CustomNodes icon indicating copy to clipboard operation
ComfyUI_Comfyroll_CustomNodes copied to clipboard

Custom nodes for SDXL and SD1.5 including Multi-ControlNet, LoRA, Aspect Ratio, Process Switches, and many more nodes.

Results 141 ComfyUI_Comfyroll_CustomNodes issues
Sort by recently updated
recently updated
newest added

I saw others using the 'text to string' node in the video, but I couldn't find it in the list no matter what. But using the search method, this node...

Add the node "CR AspectRatioPH", changed copy of the original "CR AspectRatio", to include some smartphones screen resolutions.

``` # ComfyUI Error Report ## Error Details - **Node Type:** CR Text List - **Exception Type:** TypeError - **Exception Message:** CR_TextList.make_list() missing 1 required positional argument: 'loops' ## Stack...

Add proper escaping to font paths - Resolves errors during ComfyUI startup.

i downloaded this suite only for this node and.... index output shows interval output interval output shows help help shows nothing

I see this in the ComfyUI Manager custom nodes tab: When I try to switch version, it's empty: Not noticing any problems, just ran across this today, when going through...

Added litegraph.js to the Credits, it is the node engine that ComfyUI uses under the hood.

I am having problem with Comfyroll failing to import when loading Comfyui. I am on 3.51 of comfyui portable (which runs python3.13), and 1.26.8 frontend. This happens every time I...

您好, 我在使用您的插件时,控制台出现以下警告: SyntaxWarning: invalid escape sequence '\W' SyntaxWarning: invalid escape sequence '\R' 这些警告是由于代码中使用了类似 "C:\Windows\Fonts" 这样的 Windows 路径字符串,导致 Python 误把 \W、\R 等识别成转义字符,从而抛出无效转义序列的警告。 建议将涉及路径的字符串改为原始字符串(加前缀 r),例如: r"C:\Windows\Fonts" 或者使用双反斜杠转义: "C:\\Windows\\Fonts" 具体示例修改: "default": "C:\Windows\Fonts" 改为...