Get gdal development libraries:
$ sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
$ sudo apt-get update
$ sudo apt-get install libgdal-dev
Create and activate a virtual environment:
| // Staggart Creations | |
| // http://staggart.xyz | |
| using UnityEngine; | |
| [ExecuteInEditMode] | |
| public class HeightmapToMesh : MonoBehaviour | |
| { | |
| public MeshFilter meshFilter; | |
| public Texture2D heightmap; |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| using UnityEditor; | |
| using UnityEditor.SceneManagement; | |
| namespace com.hololabs.editor | |
| { | |
| public static class GotoScene | |
| { |
| /* https://github.com/eisnerd/feedback-tool + github issues | |
| Example: | |
| $.feedbackGithub({ | |
| token: "16222221222128357fab95ec80b56a43c9a1868b429", | |
| issues: { | |
| repository: "tokland/feedback-test", | |
| title: "feedback from user", | |
| renderBody: (body) => "my own data\n" + body, |