Best way to randomly place planets to generate universe?

On top of that, you’ll want to use random streams. They allow you to make your universe consistent, yet random. The random stream’s results are based on a number called the “seed”, which will decide all of the random choices. Two universes with the same seed will be similar, but a different seed will result in an entirely different universe. Make sure you always use the same random stream, and pass it by ref, though.

1 Like