Remix.run Logo
chaosprint 6 hours ago

Interesting. But if you claim "prompt in Godot game out", how do you deal with assets? I think assets pipeline is one of the most challenging parts in game dev. Is there anything similar but for Bevy?

htdt 6 hours ago | parent [-]

Assets are a big chunk of the pipeline — generates 2D art with Gemini, converts to 3D via Tripo3D, handles sprite sheets and background removal. Animation is the main remaining gap.

Haven't looked into Bevy but will check it out, thanks.

tayo42 4 hours ago | parent [-]

What handles making sprite sheets?

htdt 4 hours ago | parent [-]

Gemini with some tricks for grid alignment and background removal. Not perfect yet, planning to switch to a video model for animated sprites.

tayo42 4 hours ago | parent [-]

Are they not animated?

htdt 3 hours ago | parent [-]

They are for 2D — classic animated sprite sheets with numbered frames. 3D models are static for now. The video model switch should help with smoother 2D animation between frames.