├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── files ├── batch_layers.json ├── bojnice-castle-1603142898.jpg ├── example.json ├── workflow.png └── workflow_img.png ├── install.py ├── layers_creation.py ├── pyproject.toml └── test_layers.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/__init__.py -------------------------------------------------------------------------------- /files/batch_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/files/batch_layers.json -------------------------------------------------------------------------------- /files/bojnice-castle-1603142898.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/files/bojnice-castle-1603142898.jpg -------------------------------------------------------------------------------- /files/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/files/example.json -------------------------------------------------------------------------------- /files/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/files/workflow.png -------------------------------------------------------------------------------- /files/workflow_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/files/workflow_img.png -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/install.py -------------------------------------------------------------------------------- /layers_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/layers_creation.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessandrozonta/ComfyUI-Layers/HEAD/test_layers.py --------------------------------------------------------------------------------