Love2d - 如何使文本可点击



我有一个简单的文本,我希望它在我单击文本时退出。 对不起,爱2D的新手

quit = love.graphics.print( "Quit", 450,375)
function love.mousepressed(quit)
  love.event.quit()
end
function love.update(dt)
    function love.mousepressed( x, y)   
        if x > 440 and x < 540 and y > 380 and y < 410 then 
            love.event.quit()
        end
    end
end
您可能

希望创建一个 Text 对象,而不是使用 love.graphics.print 。然后,您可以在支票中查询其宽度和高度,并使用 love.graphics.draw 显示它。代码可能如下所示:

function love.draw ()
  love.graphics.draw(quit.text, quit.x, quit.y)
end
function love.load ()
  local font = love.graphics.getFont()
  quit = {}
  quit.text = love.graphics.newText(font, "Quit")
  quit.x = 450
  quit.y = 375
end
function love.mousepressed (x, y, button, istouch)
  if x >= quit.x and x <= quit.x + quit.text:getWidth() and
     y >= quit.y and y <= quit.y + quit.text:getHeight() then
    love.event.quit()
  end
end

相关内容

  • 没有找到相关文章

最新更新