纳金网

标题: 通过二维数组生成地图的代码 [打印本页]

作者: may    时间: 2015-8-31 06:59
标题: 通过二维数组生成地图的代码

通过二维数组生成地图的代码
  1. using UnityEngine;
  2. using System.Collections;

  3. public class CreateMap : MonoBehaviour {
  4.     public GameObject cubePrefab;
  5.     private int[,] map;
  6.     public int rows;
  7.     public int columns;
  8.     private GameObject[,] createMap;
  9.     private float gap = 1f;
  10.     void Awake() {
  11.         rows = 10;
  12.         columns = 10;
  13.         map = new int[rows, columns];
  14.         for (int i = 0; i < rows; i++)
  15.         {
  16.             for (int j = 0; j < columns; j++)
  17.             {
  18.                 map[i, j] = Random.Range(0, 2);
  19.             }
  20.         }
  21.         createMap = new GameObject[rows, columns];
  22.     }
  23.         // Use this for initialization
  24.         void Start () {
  25.         CreateCubes();
  26.         }
  27.        
  28.         // Update is called once per frame
  29.         void Update () {
  30.         
  31.             
  32.         }

  33.     public void CreateCubes() {
  34.         float posX = 0;
  35.         float posZ = 0;
  36.         for (int i = 0; i < rows; i++)
  37.         {
  38.             for (int j = 0; j < columns; j++)
  39.             {
  40.                 posX = j * gap;
  41.                 posZ = i * gap;
  42.                 if (1 == map[i, j]) {
  43.                     createMap[i, j] = Instantiate(cubePrefab, new Vector3(posX, 0f, posZ), Quaternion.identity) as GameObject;
  44.                 }
  45.             }
  46.         }
  47.     }

  48. }
复制代码





欢迎光临 纳金网 (http://go.narkii.com/club/) Powered by Discuz! X2.5