implement nuke button
This commit is contained in:
parent
bbbe6cf371
commit
e7a8fdf576
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user