
Generating tile map - Game Development Stack Exchange
I am programming a tile based game and I have some basic tiles (grass, dirt, etc..), but I can't figure out how to make good random map generation, because when I do some really random …
Tools for creating 2d tile based maps [closed]
What are some tools I can use to create 2d tile based maps? Please provide the information below, and try to limit to one tool per answer. Name Link to website General features Export …
xna - What is a good way to store tilemap data? - Game …
The tile map is loaded into a 2D array, so this question is about which source to fill the array from. Reasoning for DB: From my perspective I see less redundancy of data using a database to …
Basic Random Tile Map Generation - Game Development Stack …
2018年5月2日 · Currently I've got a map like this: It's pretty simple but what I want is that area of tiles to be random, with the number of tiles present being random (Within a minimum and …
More Efficient Data Structure for Large Layered Tile Map
2012年11月7日 · I would argue that the most efficient data structure for your tile rendering would be an array of byte, provided that you do not have more than 256 different types of tiles …
Tile sizes in 2D games - Game Development Stack Exchange
Having a decent map size. Allow adaptation of the game on a handheld (ie: PSP), smartphone or a computer without too much loss of detail or slowdowns. Allow more or less important zoom …
Java 2D Tile Map and Moving Sprites with threads
2014年12月15日 · I'm having difficulties understanding how to use threads and I'm not sure if my basic structure is right. This is my Board Class: package mortifera; import java.awt.Color; …
Algorithm for procedural 2D map with connected paths
Problem to solve: Generate a random 2D dungeon map for a tile-based game where all rooms are connected. I am looking for better solutions than what I currently have. My current solution is …
2d - How do I generate a random map with islands (like the Earth ...
2020年3月27日 · I'm developing a game in Unity and trying to build a map generator that is capable of creating random maps like the Earth, on a 2D tilemap. The map should contain 2 …
Random map generation - Game Development Stack Exchange
2012年7月3日 · BTW the polygon map generation project was made for a game that had a tile map that didn't display the heights. The heights and polygons are there to generate the …