pothi.love/0052-draw_cursor

7 lines
184 B
Plaintext

draw_cursor = function(x, y)
-- blink every 0.5s
if math.floor(Cursor_time*2)%2 == 0 then
App.color(Cursor_color)
love.graphics.rectangle('fill', x,y, 3,HUD_line_height)
end
end