https://www.dropbox.com/s/1ynlcf7ej1bkv ... P.rar?dl=0
if you look in the styles.lua file, you'll see 2 blocks of code, 1 commented out.
the method I tried first was to draw the button graphics once, and use layers to overlay the icon onto the button.(That's the configuration in the file as it is) this was the result.
https://www.dropbox.com/s/v0w73ap3se9m2 ... 4.png?dl=0
As you can see, it doesn't look right.
Example snippet of the layer code:
Code: Select all
default_graphical_set =
{
type = "monolith",
monolith_image =
{
layers =
{
{
filename = "__bobclasses__/buttons/button.png",
priority = "extra-high-no-scale",
load_in_minimal_mode = true,
width = 36,
height = 36,
},
{
filename = filename,
priority = "extra-high-no-scale",
load_in_minimal_mode = true,
width = 32,
height = 32,
shift = {2, 2}
}
}
}
},
As a result, I then went and edited the graphics so each button had it's own set of image files. (commented out in the mod), this is the result.
https://www.dropbox.com/s/wi2v1633a22ae ... 8.png?dl=0
As you can see, everything looks as you would expect.
Am I doing something wrong, or is this some sort of bug?