#Random tiles spawn

1 messages · Page 1 of 1 (latest)

shell dawn
#

Hello. When I press play on my project, instead of the first image (image1), the tiles shows up in random order (image2). I atached a video aswell, maybe the video explains the situation that I am in

scarlet reef
#

Looks like you're using procedural generation in the editor & runtime but you don't have a fixed seed so the tiles change. In that case you should update your tile generation code to be deterministic and use a seed (e.g. via Random.Init(seed))
Or am I missing something else that's going wrong?

shell dawn