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

This subforum contains all the issues which we already resolved.
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,
...
Rseding91
Factorio Staff
Factorio Staff
Posts: 17306
Joined: Wed Jun 11, 2014 5:23 am
Contact:

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

Post by Rseding91 »

Thanks for the report. This is now fixed for the next release.
If you want to get ahold of me I'm almost always on Discord.
Post Reply

Return to “Resolved Problems and Bugs”