ScottGray
Mini-Member

Posts: 77
Registered: 04-12 |
They mean the lighting.acs script in the ACS folder.
The rgb values provided by Omnipotus, that are used with his map.rom too map.wad conversion tool match the values of the lighting.acs, so it can be used for the final doom maps also.
You can have 256 different colors, (0-255, 0 is no color.)
this script gives sectors taged with 1001 - 1255 color lighting using the Sector_SetColor function.
so color 1 is given Tag 1001 and has Red 216, Green 222, Blue 231
Sector_SetColor (1001,216,222,231);
.
.
.
color 255 is given Tag 1255 and has Red 201, Green 4, Blue 4
Sector_SetColor (1255,201,4,4);
|