v0.6.2b: brightened fog of war

This commit is contained in:
Evan Debenham 2017-11-06 03:34:42 -05:00 committed by Evan Debenham
parent 41685ce45c
commit dc460c3e18

View File

@ -42,19 +42,19 @@ public class FogOfWar extends Image {
//first index is visibility type, second is brightness level
private static final int FOG_COLORS[][] = new int[][]{{
//visible
0xAA000000, 0x55000000, //-2 and -1 brightness
0x55000000, 0x00000000, //-2 and -1 brightness
0x00000000, //0 brightness
0x00000000, 0x00000000 //1 and 2 brightness
}, {
//visited
0xEE000000, 0xDD000000,
0xCC000000,
0x99000000, 0x66000000
0xDD000000, 0xBB000000,
0x99000000,
0x77000000, 0x55000000
}, {
//mapped
0xEE442211, 0xDD442211,
0xCC442211,
0x99442211, 0x66442211
0xDD221108, 0xBB442211,
0x99663319,
0x77884411, 0x55AA552A
}, {
//invisible
0xFF000000, 0xFF000000,