Page 1 of 1

[2.1.9] Not all available stromatolite textures are loaded.

Posted: Wed Jul 08, 2026 6:46 am
by Ingo-Igel
There are 13 copper stromatolite and 13 iron stromatolite textures, but only 10 copper stromatolite and 11 iron stromatolite textures are loaded (variation_count) in the "decoratives-gleba.lua".

copper-stromatolite.lua:

Code: Select all

return
{
  width = 246,
  height = 174,
  shift = util.by_pixel( 5.5, 1.5),
  line_length = 1,
  filenames = {
    "-1.png",
    "-2.png",
    "-3.png",
    "-4.png",
    "-5.png",
    "-6.png",
    "-7.png",
    "-8.png",
    "-9.png",
    "-10.png",
    "-11.png",
    "-12.png",
    "-13.png",
  },
  lines_per_file = 1,
}
iron-stromatolite.lua:

Code: Select all

return
{
  width = 258,
  height = 204,
  shift = util.by_pixel( 1.5, 7.0),
  line_length = 1,
  filenames = {
    "-1.png",
    "-2.png",
    "-3.png",
    "-4.png",
    "-5.png",
    "-6.png",
    "-7.png",
    "-8.png",
    "-9.png",
    "-10.png",
    "-11.png",
    "-12.png",
    "-13.png",
  },
  lines_per_file = 1,
}
decoratives-gleba.lua:

Code: Select all

...
  layers =
    {
      util.sprite_load("__space-age__/graphics/entity/stromatolite/copper/copper-stromatolite", { scale = 0.4, variation_count = 10,multiply_shift=0.5})
    }
...
and

Code: Select all

...
  layers =
    {
      util.sprite_load("__space-age__/graphics/entity/stromatolite/iron/iron-stromatolite", { scale = 0.4, variation_count = 11,multiply_shift=0.5})
    }
...