Re: help with endless map generation please?

2020-05-31 Thread AudioGames . net Forum — Developers room : chrisnorman7 via Audiogames-reflector
Re: help with endless map generation please? @7, be careful, as if the player can scan ahead, they'll get empty space at best, or tracebacks at worse. URL: https://forum.audiogames.net/post/535305/#p535305 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: help with endless map generation please?

2020-05-31 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
Re: help with endless map generation please? I've already got it figured out, thanx. i spawn tiles when there are no more tiles infront of the player. URL: https://forum.audiogames.net/post/535192/#p535192 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: help with endless map generation please?

2020-05-30 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: help with endless map generation please? Hm, well if there's no need to care about previous tiles, there may be no need to retain them in memory either. When moving forward, can they move left or right? Or is it just a straight line? How far ahead can they see along this path

Re: help with endless map generation please?

2020-05-30 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: help with endless map generation please? Hm, well if there's no need to care about previous tiles, there may be no need to retain them in memory either. When moving forward, can they move left or right? Or is it just a straight line? How far ahead can they see along this path

Re: help with endless map generation please?

2020-05-29 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
Re: help with endless map generation please? Hi there @4, i was thinking to generate the map as the player moves. I don't care about previous tiles, as the player won't be able to move backwards on the map, only constant forward motion.I also don't care about a maximum size for the map

Re: help with endless map generation please?

2020-05-29 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: help with endless map generation please? Are you attempting to procedurally generate a whole map? Or generate it as you go? Do you retain previously generated tiles? Do you have a limit in mind as to the maximum size of the generated map? URL: https://forum.audiogames.net/post/534439

Re: help with endless map generation please?

2020-05-29 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
Re: help with endless map generation please? Hi there, @2, the thing is that if the random variable is in the loop, the hole map get's generated like 2 tiles water, 1 tile dirt and so on... but i'll try again. URL: https://forum.audiogames.net/post/534426/#p534426 -- Audiogames

Re: help with endless map generation please?

2020-05-28 Thread AudioGames . net Forum — Developers room : ivan_soto via Audiogames-reflector
Re: help with endless map generation please? Did you make sure that you can edit these variables?In other words, did you insure that they were in your loop's namespace? URL: https://forum.audiogames.net/post/534204/#p534204 -- Audiogames-reflector mailing list Audiogames-reflector

help with endless map generation please?

2020-05-28 Thread AudioGames . net Forum — Developers room : ashleygrobler04 via Audiogames-reflector
help with endless map generation please? Hi all, i was trying to generate an endless map in python, but it just does not work. i tried googling it but all i get is unity stuff. can any one please explain to me how to generate an endless map please? here follows some code i've tried