mirror of
https://github.com/keharriso/love-nuklear.git
synced 2025-09-10 16:17:47 -04:00
Updated Home (markdown)
parent
583922a615
commit
37bcd0f8e1
1 changed files with 4 additions and 4 deletions
8
Home.md
8
Home.md
|
@ -48,14 +48,14 @@ function love.keyreleased(key, scancode)
|
|||
end
|
||||
end
|
||||
|
||||
function love.mousepressed(x, y, button, istouch)
|
||||
if ui:mousepressed(x, y, button, istouch) then
|
||||
function love.mousepressed(x, y, button, istouch, presses)
|
||||
if ui:mousepressed(x, y, button, istouch, presses) then
|
||||
return -- event consumed
|
||||
end
|
||||
end
|
||||
|
||||
function love.mousereleased(x, y, button, istouch)
|
||||
if ui:mousereleased(x, y, button, istouch) then
|
||||
function love.mousereleased(x, y, button, istouch, presses)
|
||||
if ui:mousereleased(x, y, button, istouch, presses) then
|
||||
return -- event consumed
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue