Types/DaytimeColorLookupTable

From Official Factorio Wiki
Revision as of 14:37, 25 March 2021 by Bilka (talk | contribs) (1.1.28: Fixed incorrect color lookup table interpolation for ambient light around noon.)
Jump to navigation Jump to search

An array of arrays.

The first member of the inner array must be a double, second member of the inner array must be a FileName or "identity". The file pointed to by the filename must be a sprite of size 256×16 or 16×256.

Inner array

First member

The first member states at which time of the day the LUT should be used.

If the current game time is between two values defined in the color lookup that have different LUTs, the color is interpolated to create a smooth transition. (Sharp transition can be achieved by having the two values differing only by a small fraction.)

Only one inner array means that the LUT will be used all the time, regardless of the value of the first member.

Second member

The second member is a lookup table (LUT) for the color which maps the original color to a position in the sprite where is the replacement color is found.

Example

color_lookup = {{1, "identity"}}
color_lookup = {{0.5, "__core__/graphics/color_luts/nightvision.png"}}
zoom_to_world_daytime_color_lookup =
{
  {0.25, "identity"},
  {0.45, "__core__/graphics/color_luts/night.png"},
  {0.55, "__core__/graphics/color_luts/night.png"},
  {0.75, "identity"},
},