Page 1 of 1

[2.1.8] foundation-transitions-lightmap.png is not loaded in the tiles.lua

Posted: Thu Jun 25, 2026 3:49 pm
by Ingo-Igel
In the tiles.lua under data/space-age/prototypes/tiles.lua is the integration of the foundation-transitions-lightmap.png missing in the "transitions between transitions" part of the foundation.

The newly added lightmap (foundation-transitions-lightmap.png) for the transitions isn't used anywhere else, and this is the only place where it makes sense to integrate it, just like the other lightmaps for the transitions.

Original code:

Code: Select all

...
    transition_group1 = default_transition_group_id,
    transition_group2 = lava_transition_group_id,

    spritesheet = "__space-age__/graphics/terrain/lava-transitions/foundation-transitions-lava.png",
    layout = tile_spritesheet_layout.concrete_layout(false,false,true),
    background_enabled = false,
...
As far as i undersand this, it schould look like:

Code: Select all

...
    transition_group1 = default_transition_group_id,
    transition_group2 = lava_transition_group_id,

    spritesheet = "__space-age__/graphics/terrain/lava-transitions/foundation-transitions-lava.png",
    lightmap_layout = { spritesheet = "__space-age__/graphics/terrain/lava-transitions/foundation-transitions-lightmap.png" },
    layout = tile_spritesheet_layout.concrete_layout(false,false,true),
    background_enabled = false,
...