├── .github └── workflows │ └── publish_action.yaml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── densediffusion_node.py ├── enums.py ├── examples └── densediffusion_compare.json └── pyproject.toml /.github/workflows/publish_action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/.github/workflows/publish_action.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/__init__.py -------------------------------------------------------------------------------- /densediffusion_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/densediffusion_node.py -------------------------------------------------------------------------------- /enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/enums.py -------------------------------------------------------------------------------- /examples/densediffusion_compare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/examples/densediffusion_compare.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huchenlei/ComfyUI_densediffusion/HEAD/pyproject.toml --------------------------------------------------------------------------------