hexyz is tower defense game, and a lua library for dealing with hexagonal grids
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
700 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. COLORS = {
  2. TRANSPARENT = vec4(0.6),
  3. -- tones
  4. WHITE = vec4(1, 1, 0.95, 1),
  5. PALE_SILVER = vec4(193/255, 178/255, 171/255, 1),
  6. BLACK = vec4(0, 0, 0.05, 1),
  7. VERY_DARK_GRAY = vec4(35/255, 35/255, 25/255, 1),
  8. TRUE_BLACK = vec4(0, 0, 0, 1),
  9. -- non-standard hues
  10. WATER = vec4(0.12, 0.25, 0.3, 1),
  11. GRASS = vec4(0.05, 0.22, 0.11, 1),
  12. DIRT = vec4(0.22, 0.20, 0.10, 1),
  13. MOUNTAIN = vec4(0.95, 0.30, 0.20, 1),
  14. -- hues
  15. CLARET = vec4(139/255, 30/255, 63/255, 1),
  16. SUNRAY = vec4(228/255, 179/255, 99/255, 1),
  17. }