├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── any-list.png ├── any-to-any.png ├── axis-packing.png ├── image-accumulator.png ├── load-lines-from-file.png ├── text-splitter.png ├── xy-grid-accumulator.png └── xy-grid-helper.png ├── axis-config.json ├── custom-axis-config.json ├── js └── extension.js ├── nodes.py ├── pyproject.toml ├── static └── Roboto-Regular.ttf ├── unused_nodes.py └── workflows ├── axis-packing-grid.png ├── sampler-grid.png └── xy-grid.png /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/any-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/any-list.png -------------------------------------------------------------------------------- /assets/any-to-any.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/any-to-any.png -------------------------------------------------------------------------------- /assets/axis-packing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/axis-packing.png -------------------------------------------------------------------------------- /assets/image-accumulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/image-accumulator.png -------------------------------------------------------------------------------- /assets/load-lines-from-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/load-lines-from-file.png -------------------------------------------------------------------------------- /assets/text-splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/text-splitter.png -------------------------------------------------------------------------------- /assets/xy-grid-accumulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/xy-grid-accumulator.png -------------------------------------------------------------------------------- /assets/xy-grid-helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/assets/xy-grid-helper.png -------------------------------------------------------------------------------- /axis-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/axis-config.json -------------------------------------------------------------------------------- /custom-axis-config.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /js/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/js/extension.js -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/static/Roboto-Regular.ttf -------------------------------------------------------------------------------- /unused_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/unused_nodes.py -------------------------------------------------------------------------------- /workflows/axis-packing-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/workflows/axis-packing-grid.png -------------------------------------------------------------------------------- /workflows/sampler-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/workflows/sampler-grid.png -------------------------------------------------------------------------------- /workflows/xy-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjiqq/qq-nodes-comfyui/HEAD/workflows/xy-grid.png --------------------------------------------------------------------------------