Skip to content

Instantly share code, notes, and snippets.

@AncientPixel
Last active December 16, 2015 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AncientPixel/5419378 to your computer and use it in GitHub Desktop.
Save AncientPixel/5419378 to your computer and use it in GitHub Desktop.
Structure to hold the colour for each height map value range.
public class Region
{
public string name;
public Color baseColor;
public double[] range = new double[2];
}
public List<Region> _regions = new List<Region>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment