mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-05 09:40:22 +01:00
Polish displaying of big recipes
This commit is contained in:
parent
1884c92775
commit
ee4cfc119a
11
init.lua
11
init.lua
|
@ -103,14 +103,9 @@ function craftguide:get_recipe(player_name, tooltip_l, item, recipe_num, recipes
|
|||
local Y = ceil(i / width + ((iY + 2) - min(2, rows)))
|
||||
|
||||
if recipe_type == "normal" and width > 3 or rows > 3 then
|
||||
btn_size = 3 / width
|
||||
if width > 3 then
|
||||
X = (btn_size * (i % width)) + offset_X
|
||||
end
|
||||
if rows > 3 then
|
||||
Y = (btn_size * floor((i-1) / rows)) + (iY + 3) -
|
||||
min(2, rows)
|
||||
end
|
||||
btn_size = width > 3 and 3 / width or 3 / rows
|
||||
X = (btn_size * (i % width)) + offset_X
|
||||
Y = (btn_size * floor((i-1) / width)) + (iY + 3) - min(2, rows)
|
||||
end
|
||||
|
||||
local groups = extract_groups(v)
|
||||
|
|
Loading…
Reference in New Issue
Block a user