├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── example_workflows ├── example_hy_flowedit.json ├── example_hy_flowedit_regional.json ├── example_hy_regional_prompting_t2v.json └── wrapper_example_hunyuan_flowedit.json ├── modules ├── hy_layers.py └── hy_model.py ├── nodes ├── flow_edit_nodes.py ├── flowedit_nodes.py ├── hy_attn_override_node.py ├── hy_feta_enhance_node.py ├── hy_model_pred_nodes.py ├── hy_regional_cond_nodes.py ├── modify_hy_model_node.py ├── rectified_sampler_nodes.py └── wrapper_flow_edit_nodes.py └── utils ├── feta_enhance_utils.py ├── latent_preview.py ├── mask_utils.py └── rope_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/__init__.py -------------------------------------------------------------------------------- /example_workflows/example_hy_flowedit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/example_workflows/example_hy_flowedit.json -------------------------------------------------------------------------------- /example_workflows/example_hy_flowedit_regional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/example_workflows/example_hy_flowedit_regional.json -------------------------------------------------------------------------------- /example_workflows/example_hy_regional_prompting_t2v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/example_workflows/example_hy_regional_prompting_t2v.json -------------------------------------------------------------------------------- /example_workflows/wrapper_example_hunyuan_flowedit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/example_workflows/wrapper_example_hunyuan_flowedit.json -------------------------------------------------------------------------------- /modules/hy_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/modules/hy_layers.py -------------------------------------------------------------------------------- /modules/hy_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/modules/hy_model.py -------------------------------------------------------------------------------- /nodes/flow_edit_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/flow_edit_nodes.py -------------------------------------------------------------------------------- /nodes/flowedit_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/flowedit_nodes.py -------------------------------------------------------------------------------- /nodes/hy_attn_override_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/hy_attn_override_node.py -------------------------------------------------------------------------------- /nodes/hy_feta_enhance_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/hy_feta_enhance_node.py -------------------------------------------------------------------------------- /nodes/hy_model_pred_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/hy_model_pred_nodes.py -------------------------------------------------------------------------------- /nodes/hy_regional_cond_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/hy_regional_cond_nodes.py -------------------------------------------------------------------------------- /nodes/modify_hy_model_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/modify_hy_model_node.py -------------------------------------------------------------------------------- /nodes/rectified_sampler_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/rectified_sampler_nodes.py -------------------------------------------------------------------------------- /nodes/wrapper_flow_edit_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/nodes/wrapper_flow_edit_nodes.py -------------------------------------------------------------------------------- /utils/feta_enhance_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/utils/feta_enhance_utils.py -------------------------------------------------------------------------------- /utils/latent_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/utils/latent_preview.py -------------------------------------------------------------------------------- /utils/mask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/utils/mask_utils.py -------------------------------------------------------------------------------- /utils/rope_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-HunyuanLoom/HEAD/utils/rope_utils.py --------------------------------------------------------------------------------