I tried using assembling-machine-3's code: doesn't render (only the pipe covers)
I tried putting my own pictures as cover: it renders correctly
I tried making my pics transparent to be sure it's not rendered under
I tried adding that code in data-final-fixes
Code: Select all
fluid_box =
{
volume = 200,
pipe_picture = {
north =
{
filename = entity .. "timeshift_energy_roots/timeshift_energy_roots-pipe-N.png",
priority = "extra-high",
width = 128,
height = 128,
shift = util.by_pixel(0, 32),
scale = 0.5
},
east =
{
filename = entity .. "timeshift_energy_roots/timeshift_energy_roots-pipe-E.png",
priority = "extra-high",
width = 128,
height = 128,
shift = util.by_pixel(-32, 0),
scale = 0.5
},
south =
{
filename = entity .. "timeshift_energy_roots/timeshift_energy_roots-pipe-S.png",
priority = "extra-high",
width = 128,
height = 128,
shift = util.by_pixel(0, -32),
scale = 0.5
},
west =
{
filename = entity .. "timeshift_energy_roots/timeshift_energy_roots-pipe-W.png",
priority = "extra-high",
width = 128,
height = 128,
shift = util.by_pixel(32, 0),
scale = 0.5
}
},
pipe_connections =
{
{ flow_direction = "input", direction = defines.direction.north, position = {0, -1} },
{ flow_direction = "input", direction = defines.direction.east, position = {1, 0} },
{ flow_direction = "input", direction = defines.direction.south, position = {0, 1} },
{ flow_direction = "input", direction = defines.direction.west, position = {-1, 0} },
},
production_type = "input",
filter = "timeshift_nutrients_slurry",
minimum_temperature = 0,
},