├── .github └── workflows │ └── publish.yml ├── .gitignore ├── DOCS.md ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── README.md ├── Screenshot 2023-11-05 181932.png ├── Screenshot 2023-11-06 002520.png ├── Screenshot 2023-11-07 040534.png ├── Screenshot 2023-11-25 034407.png ├── workflow-2023-12-24.png ├── workflow_highway.json ├── workflow_junction.json ├── workflow_junction_batch.json └── workflow_loop.json ├── node_list.json ├── nodes.py ├── pyproject.toml ├── requirements.txt ├── utils.py └── web └── js ├── fixes.js ├── nodes.js ├── utils.js └── widgets.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/DOCS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- 1 | Random assets for the README 2 | -------------------------------------------------------------------------------- /assets/Screenshot 2023-11-05 181932.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/Screenshot 2023-11-05 181932.png -------------------------------------------------------------------------------- /assets/Screenshot 2023-11-06 002520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/Screenshot 2023-11-06 002520.png -------------------------------------------------------------------------------- /assets/Screenshot 2023-11-07 040534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/Screenshot 2023-11-07 040534.png -------------------------------------------------------------------------------- /assets/Screenshot 2023-11-25 034407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/Screenshot 2023-11-25 034407.png -------------------------------------------------------------------------------- /assets/workflow-2023-12-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/workflow-2023-12-24.png -------------------------------------------------------------------------------- /assets/workflow_highway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/workflow_highway.json -------------------------------------------------------------------------------- /assets/workflow_junction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/workflow_junction.json -------------------------------------------------------------------------------- /assets/workflow_junction_batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/workflow_junction_batch.json -------------------------------------------------------------------------------- /assets/workflow_loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/assets/workflow_loop.json -------------------------------------------------------------------------------- /node_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/node_list.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | wrapt 2 | natsort 3 | wat-inspector -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/utils.py -------------------------------------------------------------------------------- /web/js/fixes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/web/js/fixes.js -------------------------------------------------------------------------------- /web/js/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/web/js/nodes.js -------------------------------------------------------------------------------- /web/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/web/js/utils.js -------------------------------------------------------------------------------- /web/js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trung0246/ComfyUI-0246/HEAD/web/js/widgets.js --------------------------------------------------------------------------------