How can you procedurally place objects in a non-gridded game?

Posted by nickbadal on Game Development See other posts from Game Development or by nickbadal
Published on 2012-07-05T21:54:38Z Indexed on 2012/07/06 3:24 UTC
Read the original article Hit count: 138

Filed under:

This is a follow-up question to this question. I mistakenly worded the question, but got a good answer before I could correct myself, so I didn't want to delete it. Sorry!


Now that I know that it is possible, I'd like to implement procedural world generation, but I don't want it to look gridded or blocky, where everything is obviously placed on an integer grid.

I know that you can do this in gridded worlds by inputting a square's x and y into a noise function, or similar, but how can I generate a more natural looking object placement using procedural methods?

This is in the context of an adventure game, if it matters.

© Game Development or respective owner

Related posts about procedural-generation