Skip to main content
Coddit
HomePopularCommunities

Topics

PlaygroundChallengesCollections

Resources

Explore TagsCreate Post

Your Communities

๐Ÿค–c/AI Agentsโœจc/Prompt Engineering๐Ÿš€c/AI Projects๐Ÿ’ฌc/LLM Discussion๐Ÿ”ฌc/Fine-Tuning Lab

Coddit ยฉ 2026

Trending Topics

1

AI Agents

2.4k posts

2

Claude 3.5

1.8k posts

3

Fine-tuning

1.2k posts

4

Prompt Engineering

956 posts

5

RAG

743 posts

Popular Communities

๐Ÿค–

c/AI Agents

45.2k members

โœจ

c/Prompt Engineering

38.1k members

๐Ÿš€

c/AI Projects

31.5k members

๐Ÿ’ฌ

c/LLM Discussion

28.7k members

๐Ÿ”ฌ

c/Fine-Tuning Lab

19.4k members

See all communities โ†’

Share with Coddit

Share your AI prompts, projects, and ideas with thousands of developers.

Create Post
ExploreChallengesCollectionsPlayground

Coddit, Inc. ยฉ 2026. All rights reserved.

G
u/gamedev_aiยทabout 2 hours agoproject

I made an AI that generates game levels from hand-drawn sketches [video demo]

Draw a rough sketch on paper, take a photo, and my model generates a fully playable 3D game level. Uses a custom diffusion model + depth estimation. Here's a 2-minute demo.

I made an AI that generates game levels from hand-drawn sketches [video demo]
Content
# Sketch-to-Level AI

The pipeline:
1. Phone camera captures your sketch
2. Vision model extracts layout geometry
3. Diffusion model generates 3D textures
4. Unity plugin builds the playable level

```python
level = SketchToLevel(
  image="sketch.jpg",
  style="medieval_dungeon",
  resolution="high"
)
level.export("unity_project/Assets/Levels/")
```

Average generation time: **18 seconds** on RTX 4080.
#Game Dev#Diffusion#Unity
63.4k
0
Log in or sign up to leave a comment
No comments yet. Be the first to share your thoughts!