Is it possible to generate the same noise map using a perlin/simplex noise generation algorithm with the same seed in two different programming languages?
I am looking to create a procedurally generated multiplayer world where javascript clients and an erlang server can sync using the same noise map for managing world syncing and other server tasks.
This would eliminate the need for the server to generate the noise map and transmit the values to the clients.
Best regards