Skip to content
Snippets Groups Projects
Commit 85ba0cfd authored by Milan's avatar Milan
Browse files

positioning and resizing

parent 5b28ce44
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ hb.registered_slots = {}
hb.settings = {}
local enable_damage = minetest.setting_getbool("enable_damage")
local gui_scale = tonumber(minetest.setting_get("gui_scaling")) or 1 -- use this to scale hud
local gui_scale = 1.41 -- use this to scale hud
function hb.load_setting(sname, stype, defaultval, valid_values)
local sval
......@@ -74,7 +74,7 @@ hb.settings.start_offset_right.y = hb.load_setting("hudbars_start_offset_right_y
hb.settings.vmargin = hb.load_setting("hudbars_tick", "number", 24 * gui_scale)
hb.settings.tick = hb.load_setting("hudbars_tick", "number", 1) -- was 0.1
hb.settings.tick = hb.load_setting("hudbars_tick", "number", 1) -- was 0.1 ---was 1
-- experimental setting: Changing this setting is not officially supported, do NOT rely on it!
hb.settings.forceload_default_hudbars = hb.load_setting("hudbars_forceload_default_hudbars", "bool", true)
......@@ -99,7 +99,7 @@ hb.settings.bar_type = hb.load_setting(
hb.settings.autohide_breath = hb.load_setting("hudbars_autohide_breath", "bool", true)
hb.direction = 0 -- 0: left-right, 1: right-left, 2: top-bottom, 3: bottom-top -TENPLUS1
if hb.settings.bar_type == "progress_bar" then
hb.size = {x = 3 * gui_scale, y = 17 * gui_scale}
hb.size = {x = 17 * gui_scale, y = 17 * gui_scale}
else
hb.size = {x = 17 * gui_scale, y = 17 * gui_scale}
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment