implement nuke button

This commit is contained in:
Kistaro Windrider 2023-09-22 22:53:36 -07:00
parent bbbe6cf371
commit e7a8fdf576
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -57,7 +57,7 @@ function _update60()
if segment then if segment then
mouse_y = 111 mouse_y = 111
elseif not was_click then elseif not was_click then
handle_ui_click(x, y) handle_ui_click(mouse_x, mouse_y)
end end
end end
@ -128,6 +128,15 @@ function draw_ui_checkbox(x, checked, n)
end end
function handle_ui_click(x, y) function handle_ui_click(x, y)
-- out of range
if (x < 3 or x > 125) return
-- nuke button
if x <= 12 and y > 114 and y < 125 then
cls()
return
end
end end
-->8 -->8
-- draw_cursor -- draw_cursor