mirror of
https://github.com/MinetestForFun/mff_hud.git
synced 2024-12-23 01:00:35 +01:00
Use a configuration key to decide if we show the health bar
This commit is contained in:
parent
f7ccec1446
commit
ec979b6dcd
3
init.lua
3
init.lua
@ -1,9 +1,10 @@
|
|||||||
local hotbar_size = minetest.setting_get("hotbar_size") or 16
|
local hotbar_size = minetest.setting_get("hotbar_size") or 16
|
||||||
|
local health_visible = minetest.setting_getbool("hotbar_health_visible") or false
|
||||||
|
|
||||||
minetest.register_on_joinplayer(function(player)
|
minetest.register_on_joinplayer(function(player)
|
||||||
player:hud_set_hotbar_itemcount(hotbar_size)
|
player:hud_set_hotbar_itemcount(hotbar_size)
|
||||||
|
|
||||||
player:hud_set_flags({crosshair = true, hotbar = true, healthbar = true, wielditem = true, breathbar = true})
|
player:hud_set_flags({crosshair = true, hotbar = true, healthbar = health_visible, wielditem = true, breathbar = true})
|
||||||
player:hud_set_hotbar_image("hud_hotbar.png")
|
player:hud_set_hotbar_image("hud_hotbar.png")
|
||||||
player:hud_set_hotbar_selected_image("hud_hotbar_selected.png")
|
player:hud_set_hotbar_selected_image("hud_hotbar_selected.png")
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user