-3
votes
2answers
162 views

How do I make my code randomly generate platforms and scroll up simultaneously for a doodle jump-style game? [closed]

I'm making a platforming game that is similar to doodle jump. I have code with a preset lvl, but I want the game to generate platforms randomly as the player ascends. Another problem I have is that ...
5
votes
2answers
376 views

How to render metaballs?

How to render metaballs? I am a Python programmer familiar with the Panda3d and Blender3d APIs. My math kinda sucks, but I know enough to write game logic code and procedural model generation code, ...
16
votes
3answers
1k views

How can I generate random lakes and rivers in my game?

I have a 2D block building game and am trying to make randomly generated lakes and rivers. I have looked into the Perlin noise algorithm, but, I couldn't get it to generate random and nice results. I ...
5
votes
2answers
344 views

How can I incrementally generate an graph?

I just started a new project in which I'd like the game world to consist of procedurally-generated locations connected by teleporters. After a bit of research, I've discovered this to be called ...