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

Post your bugs and problems so we can fix them.
Ingo-Igel
Burner Inserter
Burner Inserter
Posts: 15
Joined: Sun Nov 03, 2024 7:01 pm
Contact:

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

Post 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,
...
Post Reply

Return to “Bug Reports”