DEV Community

Cover image for Why we stopped betting on a single text-to-3D model
Hugo Russel
Hugo Russel

Posted on

Why we stopped betting on a single text-to-3D model

If you've played with more than one text-to-3D model, you've probably noticed the same thing we did: none of them wins every prompt. One engine nails organic shapes but mangles hard-surface geometry. Another produces beautiful topology but ignores half your prompt. Pick a favorite and you're stuck with its blind spots.

So instead of picking one, we built Sculpty as an aggregator: one studio, multiple leading text-to-3D and image-to-3D engines behind it, and you keep whichever result actually looks right — or run the same prompt through several and compare.

What that means under the hood

Aggregating third-party generation engines sounds simple until you actually have to do it — every provider has a different job/polling model, different output formats, different latency profiles, and different failure modes. The interesting engineering problem isn't calling one API, it's normalizing several wildly different ones behind a single "generate" interface so the frontend never has to know or care which engine is doing the work.

Beyond generation itself, we also built a finishing pipeline that runs on top of whatever the engines produce, since raw AI output is rarely production-ready on its own:

  • Multi-view reconstruction — 2 to 5 photos from different angles instead of a single reference image, for meshes that actually hold up from every side.
  • AI texturing with PBR materials — including on meshes generated outside Sculpty, exported as GLB with baked texture maps.
  • One-click remesh/retopology — quad retopology for rigging and animation, or triangle decimation for lightweight, game-ready assets.
  • Photoreal staging and rendering — 4K beauty shots for portfolios or product pages.

Everything exports to GLB, STL, or OBJ — print-ready for slicers, or straight into Blender, Unity, Unreal, or any web 3D viewer.

Try it

Free tier gets you a first generation, no signup friction. sculpty.ai

Top comments (0)