bring stuff

This commit is contained in:
2026-03-12 18:23:18 +03:00
parent 6185b99ca1
commit bd1cffdf7d
5 changed files with 94 additions and 16 deletions

View File

@@ -5,7 +5,8 @@ local BLACK_COLOR = { 0.0, 0.0, 0.0, 1.0 }
local WHITE_COLOR = { 1.0, 1.0, 1.0, 1.0 }
local draw_test_hud = true
local draw_example_test_hud = true
local draw_player_hud = false
local draw_example_test_hud = false
local draw_debug_string = false
local debug_string_text = ""
local debug_string_time = 0.0
@@ -26,7 +27,7 @@ function game_hud_draw( )
ui.draw_text("Hello, world!", 200.0, 200.0, GREEN_COLOR)
end
if g_player then
if g_player and draw_player_hud then
game_player_hud_draw()
end