Code: Select all
--- @type data.SimpleEntityWithOwnerPrototype
local static_test = {
  type = "simple-entity-with-owner",
  name = "picture_test",
  collision_box = { { -0.9, -0.9 }, { 0.9, 0.9 } },
  selection_box = { { -1, -1 }, { 1, 1 } },
  picture =
  {
    layers = {
      {
        filename = "__Test__/sprites/circle.png",
        width = 64,
        height = 64,
        scale = 1,
        shift = util.by_pixel_hr(-64, 0),
        blend_mode = "additive",
      },
      {
        filename = "__Test__/sprites/circle.png",
        width = 64,
        height = 64,
        scale = 1,
        shift = util.by_pixel_hr(64, 0),
        blend_mode = "additive",
        apply_runtime_tint = true,
      },
    }
  }
}
Animations have the same exact problem.

