←back to thread

549 points thecr0w | 3 comments | | HN request time: 0.855s | source
1. victorbuilds ◴[] No.46185526[source]
Building something similar - using Claude API to generate mini games from text descriptions (https://codorex.com, still pretty rough).

Can confirm: Claude is weirdly good at generating functional game logic from vague prompts, but spatial precision is a constant battle. Anything involving exact pixel positions needs validation/correction layers on top.

The suggestion upthread about having it write its own measurement tools seems promising - haven't tried that approach yet.

replies(1): >>46185926 #
2. victorbuilds ◴[] No.46185926[source]
Actually, here's a relevant example - had Claude generate an interactive solar system with circular orbits and moons: https://codorex.com/shared/yeABdJWvRHAKqHs2kxpRnZNZPWmqWSu9

Interesting that it handles this fine (functional orbital mechanics, animation) but would probably struggle to recreate the exact pixel positions of the Space Jam layout. Confirms the pattern: good at "make something like X" but bad at "recreate X exactly."

replies(1): >>46186736 #
3. thecr0w ◴[] No.46186736[source]
This is really cool.