mirror of
https://repo.or.cz/minetest_hudbars.git
synced 2024-11-24 08:03:46 +01:00
Add proper function to initialize HUD bar
This commit is contained in:
parent
55dc460d42
commit
71f15d3763
4
init.lua
4
init.lua
@ -151,6 +151,10 @@ function hud.register_hudbar(identifier, text_color, label, textures, default_st
|
|||||||
hud.hudtables[identifier] = hudtable
|
hud.hudtables[identifier] = hudtable
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function hud.init_hudbar(player, identifier, start_value, start_max)
|
||||||
|
hud.hudtables[identifier].add_all(player, start_value, start_max)
|
||||||
|
end
|
||||||
|
|
||||||
function hud.change_hudbar(player, identifier, new_value, new_max_value)
|
function hud.change_hudbar(player, identifier, new_value, new_max_value)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
local hudtable = hud.get_hudtable(identifier)
|
local hudtable = hud.get_hudtable(identifier)
|
||||||
|
Loading…
Reference in New Issue
Block a user