Ensure hinges are resized with large textures

master
Treer 2018-09-12 04:36:43 +10:00
parent 5011f7c105
commit 679509077e
1 changed files with 5 additions and 5 deletions

View File

@ -181,21 +181,21 @@ local use_default_16px_res = (modname == "darkage") or (modname == "moreblocks")
local painted_texture_suffix = ""
local painted_texture_suffix_inv = ""
if doors_are_painted then
local paint_opacity = 35
local paint_opacity_inv = paint_opacity + 15
if use_default_16px_res then
painted_texture_suffix =
"^(hidden_doors_painted_overlay.png^[opacity:" .. paint_opacity ..
"^[resize:38x32)^hidden_doors_hinges_overlay.png"
"^((hidden_doors_painted_overlay.png^[opacity:" .. paint_opacity ..
"^hidden_doors_hinges_overlay.png)^[resize:38x32)"
painted_texture_suffix_inv =
":8,0=hidden_doors_painted_overlay.png\\^[opacity\\:" ..
paint_opacity_inv .. "\\^[resize\\:38x32"
else
painted_texture_suffix =
"^(hidden_doors_painted_overlay.png^[opacity:" .. paint_opacity ..
"^[resize:" .. image_size .. ")^hidden_doors_hinges_overlay.png"
"^((hidden_doors_painted_overlay.png^[opacity:" .. paint_opacity ..
"^hidden_doors_hinges_overlay.png)^[resize:" .. image_size .. ")"
painted_texture_suffix_inv =
": " .. X1 .. ",0=hidden_doors_painted_overlay.png\\^[opacity\\:" ..
paint_opacity_inv .. "\\^[resize\\:" .. image_size