You can create a 2d array that will hold a number. Then you go through the array and depending on the number it has you instantiate a different tile prefab with the 2d array coordinates for example
tiles[5,7] = 3, this would create a grass tile at world coordinates 5,0,7
You could load the numbers from a text file and easily modify that.
The other option is to look into Editor Scripts, I dont know much about them but you could create a script in which you have a window with all of your tiles and you can click a tile and then click where you want that tile to go. The script would then place the tile to the nearest whole number.
Here is an example of an editor script http://forum.unity3d.com/threads/here-is-an-editor-script-to-help-place-objects-on-ground.38186/
↧