Hey everyone,
I know this sub is heavily focused on local text models, but I wanted to share a local compute project for the 3D and gamedev side. The current 3D AI generation market (like Meshy or Rodin) is an absolute nightmare of API paywalls, $120/mo subscriptions, and cloud-upload requirements that instantly violate studio NDAs.
I run a small indie game studio, and we needed to generate background props and mobs offline. So, I spent the last few months ripping apart the Hunyuan3D-2 architecture and building a custom, fully localized wrapper around it.
The Architecture:
The Core:
Hunyuan DiT for geometry + Paint VAE for texturing.
The Pipeline:
Running the raw model is a mess, so we integrated XAtlas for smart, engine-ready UV unwrapping and Nvdiffrast for FP32 rasterization.
The Textures:
Native outputs are usually blurry, so the pipeline intercepts the albedo, runs a VRAM-safe 4K tiled upscaler, and synthesizes a procedural PBR normal map locally before wrapping the GLB.
The Wrapper:
A C# UI that sandboxes the Python/PyTorch environment. I surgically killed the huggingface_hub auto-heal scripts. It relies entirely on a physical 24GB local models folder. If you pull your ethernet cable out, it still generates perfectly.
Hardware:
I'm running this on my own rig with an RTX 3080 10GB. Because of the 4K upscaler and the massive DiT model, you realistically need 8GB+ VRAM, otherwise the C# UI will likely hang on the final phase. I had to force PyTorch expandable segments just to mitigate VRAM fragmentation.
We packaged the whole pipeline up as "Jupetar" on Steam, pending review from Valve. It’s a one-off $45 perpetual license because we refuse to add to the SaaS fatigue.
There will be a free Demo version live specifically so people can test the VRAM limits and generation speed on their own hardware before buying.
Would love to hear what the local-compute crowd thinks of the pipeline architecture, or if anyone has tips on further optimizing local PyTorch VRAM fragmentation for 3D tasks!
Link attached below if you want to follow this project:
Source: Steam https://share.google/d3FmRxIVF64A9oo5F
[link] [comments]



