What Is Tencent's WorldClaw? AI-Generated 3D Worlds Explained
Tencent's WorldClaw turns text prompts into editable 3D worlds with separate assets, built on GPT Image 2, Meta's SAM 3, and Hunyuan 3D.

What is Tencent WorldClaw?
WorldClaw is a research project out of Tencent that turns a text prompt into a full 3D environment, not a flat rendering or a single mesh, but a scene made of separate, individually editable assets. Prompt “generate a snowline village” and the system produces the terrain plus every object in it, trees, houses, carts, lamp posts, as distinct pieces you could theoretically pull out and move, swap, or edit on their own. It’s not built on 3D Gaussian splats or NeRFs, the techniques most people associate with recent AI scene generation. Instead it uses a pipeline that plans terrain, generates 2D imagery, segments that imagery into parts, then converts each part into a 3D asset.
TL;DR
- WorldClaw generates entire 3D worlds from text prompts, and unlike most AI scene tools, every object in the scene comes out as its own editable asset rather than one fused mesh.
- The system uses a terrain planning agent that can run web searches when a prompt references something needing real-world detail, like a specific historical setting or landmark.
- Scene imagery is generated with GPT Image 2, the same image model that powers image generation inside ChatGPT.
- Object separation relies on Meta’s SAM 3 (Segment Anything Model 3), which identifies and isolates individual elements within a generated image.
- Tencent’s own Hunyuan 3D technology then converts each segmented 2D element into a full 3D asset, which is how the tool is best known in the first place.
- Output includes extra data layers like depth maps, normal maps, and instance maps for each scene, useful for anyone doing downstream 3D or graphics work.
- The obvious use cases are game level design, 3D animation production, and generating virtual training environments for robotics, though the project isn’t publicly usable yet.
Plans first. Then code.
Remy writes the spec, manages the build, and ships the app.
How does WorldClaw actually work?
WorldClaw breaks world generation into stages rather than trying to produce a 3D scene in one shot.
First, a terrain planning agent interprets the prompt and figures out what the scene needs to contain. If the prompt references something that requires outside knowledge, say a specific real-world location, historical period, or niche concept, the agent can invoke a search tool to pull in reference material before generating anything. That’s a meaningful design choice: it means the system isn’t limited to whatever visual knowledge is baked into its training data, it can go look things up.
Second, the actual imagery for the terrain and scene gets generated using GPT Image 2, the image model behind ChatGPT’s image generation feature. This produces a 2D representation of the scene, complete with all the objects that will eventually become separate 3D assets.
Third, that 2D image gets run through Meta’s SAM 3 (Segment Anything Model 3), which identifies and isolates every distinct object in the image. If GPT Image 2 generates a desert battle scene with dragons, tents, weapons, and terrain features, SAM 3 is the component that figures out where one object ends and another begins.
Fourth, each segmented 2D element gets converted into a 3D object using Tencent’s Hunyuan 3D technology, which specializes in taking 2D images and lifting them into 3D. This is the step that turns a flat, segmented picture into an actual 3D asset that could be dropped into a game engine or 3D animation pipeline.
The output isn’t just the visible scene either. Tencent’s demo materials show generated scenes accompanied by depth maps, normal maps, and instance maps, standard data layers used in 3D graphics and rendering pipelines, generated automatically alongside the visual assets.
Why does asset separation matter?
Most AI-generated 3D scenes, especially ones built on Gaussian splatting or NeRF techniques, produce a single reconstructed volume. It looks like a 3D scene, you can move a camera through it, but you can’t reach in and grab the tree, move the cart six feet to the left, or delete a lamp post. Everything is fused together as one representation of the space.
WorldClaw’s approach is different because it generates and segments assets individually before converting them to 3D. That means a generated village doesn’t just look like a village, it comes with a tree object, a house object, a cart object, each independently usable. That’s much closer to how actual game levels and animated scenes get built, where artists and designers need to move, duplicate, resize, and swap individual pieces rather than treat the whole environment as one immovable block.
What can WorldClaw be used for?
The most immediate application is game development. Building levels by hand, populating environments with props, and dressing sets is a huge chunk of game production time. A tool that can generate a rough environment with separated, editable assets could give level designers a fast starting point instead of a blank scene.
Other agents start typing. Remy starts asking.
Scoping, trade-offs, edge cases — the real work. Before a line of code.
There’s also an obvious fit for 3D animation. Independent creators who build short animated films or virtual productions, the kind of small-scale “make your own Toy Story” projects that have become more common with accessible 3D tools, could use something like this to generate environments and populate them with props without modeling everything from scratch.
The use case with arguably the biggest long-term implications is robotics training. Robots increasingly get trained in simulated environments before being deployed in the real world, since it’s safer and cheaper to fail in simulation than in physical space. A tool that can generate large numbers of varied, realistic 3D environments on demand, complete with individually usable objects a robot might need to interact with, could expand the range of scenarios available for that kind of training. This lines up with how robotics research already approaches simulation-based training, and WorldClaw looks like another possible pipeline into it.
Is WorldClaw available to try right now?
No. As of its announcement, WorldClaw is a research project, not a public tool or product. Tencent has published a research paper and example scenes on a project website, along with a link to a GitHub repository. The GitHub page, however, doesn’t yet contain usable code or a release, meaning there’s no public way to prompt your own worlds into existence yet. Anyone interested in trying it will need to wait for an actual release, and there’s no confirmed timeline for when, or whether, that will happen.
Frequently Asked Questions
What is Tencent Hunyuan’s role in WorldClaw?
Hunyuan is Tencent’s 3D generation technology, best known for converting 2D images into 3D assets. In WorldClaw, it’s the final step in the pipeline: after GPT Image 2 generates scene imagery and SAM 3 segments it into individual objects, Hunyuan converts each segmented piece into a usable 3D asset.
Does WorldClaw use Gaussian splatting or NeRFs?
No. WorldClaw’s generated worlds are explicitly not built with 3D Gaussian splats or NeRF-based reconstruction. Instead it uses a generate-then-segment-then-convert pipeline, producing individually editable 3D assets rather than one fused volumetric scene.
Can I use WorldClaw today?
Not yet. It’s a research release with a project page, example outputs, and a linked GitHub repository, but the repository doesn’t currently contain a working release or code to run it yourself.
What models power WorldClaw?
The pipeline combines a terrain planning agent (which can perform web searches for reference detail), GPT Image 2 for generating scene imagery, Meta’s SAM 3 for segmenting objects out of that imagery, and Tencent’s own Hunyuan 3D technology for converting the segmented 2D pieces into 3D assets.
Why is asset separation a big deal for AI-generated 3D scenes?
Because it makes the output usable in practical production workflows. A scene where every tree, building, and prop is a separate object can be edited, rearranged, or reused, unlike a single reconstructed 3D volume where nothing can be individually moved or swapped.