fix hud not being centered on all screens
This commit is contained in:
parent
385f0e60ca
commit
b11e9bfb18
10
hud.lua
10
hud.lua
|
@ -3,17 +3,17 @@ function create_huds(arena)
|
|||
local function create(player)
|
||||
scoreboard_blue = minetest.get_player_by_name(player):hud_add({
|
||||
hud_elem_type = "text",
|
||||
position = {x = 1, y = 0},
|
||||
offset = {x=-600, y = 50},
|
||||
scale = {x = 1, y = 1},
|
||||
position = {x =0.35, y = 0},
|
||||
offset = {x=0, y = 50},
|
||||
scale = {x = 100, y = 100},
|
||||
text = "0",
|
||||
number = 0x0001FF,
|
||||
})
|
||||
|
||||
scoreboard_red = minetest.get_player_by_name(player):hud_add({
|
||||
hud_elem_type = "text",
|
||||
position = {x = 1, y = 0},
|
||||
offset = {x=-400, y = 50},
|
||||
position = {x = 0.65, y = 0},
|
||||
offset = {x=0, y = 50},
|
||||
scale = {x = 400, y = 1},
|
||||
text = "0",
|
||||
number = 0xFF0000
|
||||
|
|
Loading…
Reference in New Issue