implemented daily double, adding/removing players, fixed font sizes, completed multiple choice

This commit is contained in:
2026-05-10 14:29:56 -07:00
parent cd0b9337fa
commit c3496cfdbe
30 changed files with 610 additions and 798 deletions
+3 -3
View File
@@ -9,7 +9,7 @@
local label
local function index(window, q, callback)
label = window:newTextLabel(" " ..q.title.. " ")
label = window:newTextLabel(q.title)
label.align = ALIGN_CENTER
label:fullFrame()
label.textColor = color.white
@@ -31,11 +31,11 @@ local function index(window, q, callback)
callback(self.text == "Correct")
end,
},correct,wrong,skip)
label:setFont(60)
end
local function update(dt) -- time in seconds that has passed since
-- label:centerFont()
label:fitFont()
label:centerFont()
end
return {