From 015e23c6f24fbd00bc155c9cf08b7c01210342e5 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 23 Mar 2015 18:35:19 +0100 Subject: Add setting to configure breath bar auto-hiding --- init.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 868d9dc..49e2443 100644 --- a/init.lua +++ b/init.lua @@ -19,6 +19,12 @@ hb.settings.start_offset_right = { x = 15, y = -86 } hb.settings.vmargin = 24 hb.settings.tick = 0.1 +hb.settings.autohide_breath = true +local autohide_breath = minetest.setting_getbool("hudbars_autohide_breath") +if autohide_breath ~= nil then + hb.settings.autohide_breath = autohide_breath +end + -- Table which contains all players with active default HUD bars (only for internal use) hb.players = {} @@ -289,7 +295,7 @@ local function custom_hud(player) hb.init_hudbar(player, "health", player:get_hp()) local breath = player:get_breath() local hide_breath - if breath == 11 then hide_breath = true else hide_breath = false end + if breath == 11 and hb.settings.autohide_breath == true then hide_breath = true else hide_breath = false end hb.init_hudbar(player, "breath", math.min(breath, 10), nil, hide_breath) end end @@ -301,7 +307,7 @@ local function update_hud(player) --air local breath = player:get_breath() - if breath == 11 then + if breath == 11 and hb.settings.autohide_breath == true then hb.hide_hudbar(player, "breath") else hb.unhide_hudbar(player, "breath") -- cgit v1.2.3