• Stars
    star
    389
  • Rank 106,843 (Top 3 %)
  • Language
    C++
  • License
    MIT License
  • Created 4 months ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unreal Engine ⚔️ ComfyUI - Automatic texturing using generative diffusion models

Comfy Textures

Comfy Textures is an Unreal Engine plugin which integrates the editor with ComfyUI. It allows you to quickly create and refine textures for your scene using generative diffusion models.

Features:

  • Single point-of-view texture projection
  • Multiple point-of-view texture projection (WIP)
  • Perspective camera
  • Orthographic camera
  • Inpainting
  • Image to image
  • Remote ComfyUI instance support
  • Batch rendering (WIP)

Works out of the box with Unreal Engine 5.x. Should work with 4.x with minor code changes.

Recommended at least 16GiB VRAM and 32GiB RAM for the SDXL workflows or run ComfyUI with the --lowvram flag.

Watch the demo

demo_editor.mp4
demo.mp4

Comfy Textures Editor Widget

Support & Contributing

Join the Discord for help and support.

If you want to contribute to the project, feel free to open a pull request or an issue.

Installation

Setup ComfyUI

  1. Install ComfyUI by following the official installation instructions for your OS.

  2. Download all of the required models from the links below and place them in the corresponding ComfyUI models sub-directory from the list.

The models directory is relative to the ComfyUI root directory i.e. <ComfyUI Root>/ComfyUI/models/.

  • models/checkpoints/sd_xl_base_1.0_0.9vae.safetensors - Download
  • models/checkpoints/sd_xl_refiner_1.0_0.9vae.safetensors - Download
  • models/controlnet/diffusers_xl_canny_full.safetensors - Download
  • models/controlnet/diffusers_xl_depth_full.safetensors - Download
  • models/loras/lcm_lora_sdxl.safetensors - Download (Note: Rename the file to lcm_lora_sdxl.safetensors)
  • models/upscale_models/4x-UltraSharp.pth - Download

Setup Unreal Engine project

  1. Clone this repository.

  2. Build the Unreal project by right clicking on MyProject.uproject and selecting Generate Visual Studio project files.

    This will generate a MyProject.sln file in the project directory. Open the file in Visual Studio and compile the project by selecting Build -> Build Solution in the top menu. If you are encountering errors, make sure Visual Studio is correctly configured for Unreal Engine by following this guide.

  3. Open the project in the Unreal Engine editor.

  4. Configure the plugin by going to Project Settings -> Plugins -> Comfy Textures.

    If you are running ComfyUI on a remote machine, you need to set the Comfy Url to the correct address.

  5. Open the plugin window by clicking on Tools -> Editor Utility Widgets -> Comfy Textures Widget.

    If the menu item is missing you need to open the ComfyTexturesWidget from the Content Browser in Plugins/Comfy Textures Content/ and click Run Utility Widget in the blueprint editor.

    If you don't see the Plugin folder in the Content Browser then click the Settings button on the top right of the Content Browser and make sure the Show Plugin Contents checkbox is enabled in the menu.

Usage

Make sure ComfyUI is up and running before proceeding.

  1. Select the actors you want to texture in the Outliner.

  2. Set your desired settings in the Comfy Textures widget.

  3. Click Render to start the rendering process.

Notes:

  • Your meshes must have UVs (autogenerated UVs are fine).
  • The plugin will automatically create a new material instance and texture for each selected actor.

Troubleshooting

LogComfyTextures: ERROR: Failed to get prompt ID

If you see the error above in the editor logs it means there is some issue with the ComfyUI setup.

  • Ensure that all model checkpoints exist at the correct location.
  • Check the ComfyUI console window for errors.
  • If there are no obvious errors in the ComfyUI logs then open a bug report.

Modes

Create

This mode uses a fast SDXL LCM model to create a low-resolution texture for each selected actor. Use this to quickly prototype and iterate on your scene.

Refine

This mode uses a slower SDXL workflow to refine the low-resolution textures created in the Create mode. Use this to create the final high-resolution textures for your scene.

Edit

This mode allows you to edit the textures created in the Create or Refine mode by using an inpainting workflow. Use this mode to fix any artifacts or errors in the textures.

You can select from two edit modes - From Texture and From Object. From Texture allows you to do precise edits by painting undesired areas to magenta (255, 0, 255, 255) using Mesh Paint. From Object will inpaint all selected actors.

Editing the ComfyUI Workflows

You can find the ComfyUI workflows used by the plugin in the Plugins/ComfyTextures/Content/Workflows/Original folder. Load the JSONs into ComfyUI to see the full workflow and make changes. After making changes, save the workflow using the Save (API Format) button in ComfyUI and copy the JSON to the corresponding file in the Plugins/ComfyTextures/Content/Workflows folder.

You need to have Enable Dev mode Options enabled in the ComfyUI settings to see the Save (API Format) button.

Credits

Made by me (Alexander Dzhoganov). If you are hiring, hit me up at alexanderdzhoganov [at] gmail [dot] com.

Thank you to the Stability.ai and to the ComfyUI teams for their wonderful work on Stable Diffusion and ComfyUI.