├── .gitignore ├── LICENSE ├── ReadMe.md ├── Scripts └── HeightMapGenerator.cs └── Shaders └── HeightMapComputeShader.compute /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-turtle/Contours2HeightMap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-turtle/Contours2HeightMap/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-turtle/Contours2HeightMap/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Scripts/HeightMapGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-turtle/Contours2HeightMap/HEAD/Scripts/HeightMapGenerator.cs -------------------------------------------------------------------------------- /Shaders/HeightMapComputeShader.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happy-turtle/Contours2HeightMap/HEAD/Shaders/HeightMapComputeShader.compute --------------------------------------------------------------------------------