转载请注明出处:http://www.cnblogs.com/shamoyuu/p/unity_minecraft_06.html 一.引入LibNoise 虽然Unity3D里也有一个Mathf.PerlinNoise,但是只能是2D的,这个可以生成3D的柏林噪音 https://github.com/ricardojmendez/LibNoise.Unity 二.创建GameManager对象 这个对象很简单,就是用来管理随机数种子 using System; using UnityEngi…
从 https://earthexplorer.usgs.gov/ 下载高程数据 从谷歌地球上保存对应地区卫星图像 从灰度图创建地形模型,并将卫星影像作为贴图 using System.Collections; using System.Collections.Generic; using UnityEngine; public class mapMeshCreate : MonoBehaviour { private Texture textureGray;//灰度图 private Text…