├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── example_workflows └── dilight_example_workflow.json ├── modules └── neural_texture_embedding.py ├── nodes ├── load_dilight_controlnet_node.py └── prepare_dilight_cond_node.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/__init__.py -------------------------------------------------------------------------------- /example_workflows/dilight_example_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/example_workflows/dilight_example_workflow.json -------------------------------------------------------------------------------- /modules/neural_texture_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/modules/neural_texture_embedding.py -------------------------------------------------------------------------------- /nodes/load_dilight_controlnet_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/nodes/load_dilight_controlnet_node.py -------------------------------------------------------------------------------- /nodes/prepare_dilight_cond_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/nodes/prepare_dilight_cond_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-DiLightNet/HEAD/pyproject.toml --------------------------------------------------------------------------------