Render preview banners with transparent patterns correctly #72
|
@ -387,13 +387,15 @@ for colorid, colortab in pairs(mcl_banners.colors) do
|
|||
-- redraw the pattern textures as low-resolution pixel
|
||||
-- art and use that instead.
|
||||
|
||||
local layer = "(([combine:20x40:-2,-2="..pattern.."^[resize:16x24^[colorize:"..color..":"..layer_ratio.."))"
|
||||
local layer = "(([combine:20x40:-2,-2=" .. pattern .. "^[resize:16x24^[colorize:" .. color .. ":" .. layer_ratio .. "))"
|
||||
local mask = "(([combine:20x40:-2,-2=" .. pattern .. "^[resize:16x24" .. "))"
|
||||
|
||||
|
||||
function escape(text)
|
||||
return text:gsub("%^", "\\%^"):gsub(":", "\\:") -- :gsub("%(", "\\%("):gsub("%)", "\\%)")
|
||||
end
|
||||
|
||||
finished_banner = "[combine:32x32:0,0=" .. escape(base) .. ":8,4=" .. escape(layer)
|
||||
local layer_masked = layer .. "^[mask:" .. escape(mask)
|
||||
finished_banner = "[combine:32x32:0,0=" .. escape(base) .. ":8,4=" .. escape(layer_masked)
|
||||
end
|
||||
|
||||
inv = finished_banner
|
||||
|
|
Reference in New Issue
I don't think it's necessary to use two parentheses for either
layer
ormask
here. Probably not worth a commit to fix them, though.Please elaborate on that and propose an alternative. I just cargo culted it until it worked.
layer
andmask
both start with((
and end with))
, despite having no intervening parentheses, meaning (at least) one pair of parens is unneeded.