├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── nodes ├── visual_area_prompt.py └── visual_area_prompt_advanced.py ├── pyproject.toml └── web ├── util └── util.js ├── visual_area_prompt.js ├── visual_area_prompt_advanced.js └── widgets └── graph_widget.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes/visual_area_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/nodes/visual_area_prompt.py -------------------------------------------------------------------------------- /nodes/visual_area_prompt_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/nodes/visual_area_prompt_advanced.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /web/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/web/util/util.js -------------------------------------------------------------------------------- /web/visual_area_prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/web/visual_area_prompt.js -------------------------------------------------------------------------------- /web/visual_area_prompt_advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/web/visual_area_prompt_advanced.js -------------------------------------------------------------------------------- /web/widgets/graph_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fuwuffyi/ComfyUI-VisualArea-Nodes/HEAD/web/widgets/graph_widget.js --------------------------------------------------------------------------------