├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── diffusion_light_sdxl_lora_comfy.safetensors ├── examples └── diffusion_light_test_workflow.json ├── nodes.py └── relighting └── tonemapper.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/__init__.py -------------------------------------------------------------------------------- /diffusion_light_sdxl_lora_comfy.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/diffusion_light_sdxl_lora_comfy.safetensors -------------------------------------------------------------------------------- /examples/diffusion_light_test_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/examples/diffusion_light_test_workflow.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/nodes.py -------------------------------------------------------------------------------- /relighting/tonemapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-DiffusionLight/HEAD/relighting/tonemapper.py --------------------------------------------------------------------------------