├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── convert_weights.py ├── examples ├── fg.json ├── fg_bg_combine.json ├── fg_lightmap.json ├── ic_light_detail_transfer.json └── ic_light_preserve_color.json ├── ic_light_nodes.py ├── locales ├── en │ └── nodeDefs.json ├── fr │ └── nodeDefs.json ├── ja │ └── nodeDefs.json ├── ko │ └── nodeDefs.json ├── ru │ └── nodeDefs.json └── zh │ └── nodeDefs.json └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/__init__.py -------------------------------------------------------------------------------- /convert_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/convert_weights.py -------------------------------------------------------------------------------- /examples/fg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/examples/fg.json -------------------------------------------------------------------------------- /examples/fg_bg_combine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/examples/fg_bg_combine.json -------------------------------------------------------------------------------- /examples/fg_lightmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/examples/fg_lightmap.json -------------------------------------------------------------------------------- /examples/ic_light_detail_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/examples/ic_light_detail_transfer.json -------------------------------------------------------------------------------- /examples/ic_light_preserve_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/examples/ic_light_preserve_color.json -------------------------------------------------------------------------------- /ic_light_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/ic_light_nodes.py -------------------------------------------------------------------------------- /locales/en/nodeDefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/locales/en/nodeDefs.json -------------------------------------------------------------------------------- /locales/fr/nodeDefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/locales/fr/nodeDefs.json -------------------------------------------------------------------------------- /locales/ja/nodeDefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/locales/ja/nodeDefs.json -------------------------------------------------------------------------------- /locales/ko/nodeDefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/locales/ko/nodeDefs.json -------------------------------------------------------------------------------- /locales/ru/nodeDefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/locales/ru/nodeDefs.json -------------------------------------------------------------------------------- /locales/zh/nodeDefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/locales/zh/nodeDefs.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI-IC-Light-Native/HEAD/pyproject.toml --------------------------------------------------------------------------------