feat: added standard day cycle, added mysterious man screen, added work screen, added new decisions, placed minigames in their proposed space
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
--- Draws a unified win message overlay.
|
||||
--- @within Minigame
|
||||
function Minigame.draw_win_overlay()
|
||||
local text = "WELL DONE!"
|
||||
local text = "SUCCESS"
|
||||
local tw = #text * 4
|
||||
local th = 6
|
||||
local padding = 4
|
||||
|
||||
@@ -50,7 +50,7 @@ function Timer.draw()
|
||||
|
||||
local fg_color
|
||||
if progress <= 0.25 then
|
||||
fg_color = Config.colors.white
|
||||
fg_color = Config.colors.dark_grey
|
||||
elseif progress <= 0.5 then
|
||||
fg_color = Config.colors.light_blue
|
||||
elseif progress <= 0.75 then
|
||||
@@ -59,7 +59,7 @@ function Timer.draw()
|
||||
fg_color = Config.colors.red
|
||||
end
|
||||
|
||||
local bg_color = Config.colors.dark_grey
|
||||
local bg_color = Config.colors.white
|
||||
local start_angle = -math.pi * 0.5
|
||||
local progress_angle = progress * 2 * math.pi
|
||||
local r_outer_sq = r_outer * r_outer
|
||||
|
||||
Reference in New Issue
Block a user