├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── nodes.py ├── pyproject.toml ├── sample_models ├── Flux_ArtDecoDelta.safetensors ├── Flux_LushJungleDelta.safetensors ├── Flux_MoonBaseDelta.safetensors ├── SDXL_ArtDecoDelta.safetensors ├── SDXL_LushJungleDelta.safetensors └── SDXL_MoonBaseDelta.safetensors └── sample_workflows ├── Flux Apply ConDelta.json ├── Flux ConDelta EasyGrid.json ├── Flux Create ConDelta.json ├── SD 15 XL Apply ConDelta.json └── SD 15 XL Create ConDelta.json /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from .nodes import * 2 | -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sample_models/Flux_ArtDecoDelta.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_models/Flux_ArtDecoDelta.safetensors -------------------------------------------------------------------------------- /sample_models/Flux_LushJungleDelta.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_models/Flux_LushJungleDelta.safetensors -------------------------------------------------------------------------------- /sample_models/Flux_MoonBaseDelta.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_models/Flux_MoonBaseDelta.safetensors -------------------------------------------------------------------------------- /sample_models/SDXL_ArtDecoDelta.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_models/SDXL_ArtDecoDelta.safetensors -------------------------------------------------------------------------------- /sample_models/SDXL_LushJungleDelta.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_models/SDXL_LushJungleDelta.safetensors -------------------------------------------------------------------------------- /sample_models/SDXL_MoonBaseDelta.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_models/SDXL_MoonBaseDelta.safetensors -------------------------------------------------------------------------------- /sample_workflows/Flux Apply ConDelta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_workflows/Flux Apply ConDelta.json -------------------------------------------------------------------------------- /sample_workflows/Flux ConDelta EasyGrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_workflows/Flux ConDelta EasyGrid.json -------------------------------------------------------------------------------- /sample_workflows/Flux Create ConDelta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_workflows/Flux Create ConDelta.json -------------------------------------------------------------------------------- /sample_workflows/SD 15 XL Apply ConDelta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_workflows/SD 15 XL Apply ConDelta.json -------------------------------------------------------------------------------- /sample_workflows/SD 15 XL Create ConDelta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/envy-ai/ComfyUI-ConDelta/HEAD/sample_workflows/SD 15 XL Create ConDelta.json --------------------------------------------------------------------------------