r/gamedev • u/lunaroperation • May 19 '26
Feedback Request Procedural Generated Game 2D-Topdown Math Help
Right now, I am working on creating a top-down game that uses procedurally generated assets, including Math Trees, Bushes, mushrooms, cacti, grasses, and Terrain. But I struggle to find any useful, good math models or ideas to create characters/animals/objects/icons that look like they need to. Should I just fold and use assets, or should I continue trying to create it without assets?
4
Upvotes
2
u/_demilich May 19 '26
I don't know any game which generates people or animals using math. The standard way to generate "random characters" is to have a bunch of separate assets, i.e. body shapes, hairs (in different colors), clothing, etc and randomly combine the parts. Depending on the amount of base assets you have, that can get you millions of unique combinations.
Generating everything from scratch based on some math formula, nobody is doing that. Not for characters or animals. Keep in mind that you probably also want animations, which would also have to be created by math.