Love2d - 如何使文本可点击

时间:2014-02-27 13:56:55

标签: text lua mouse clickable love2d

我有一个简单的文字,我希望它在单击文本时退出。抱歉,对于love2d来说很新鲜

quit = love.graphics.print( "Quit", 450,375)

function love.mousepressed(quit)
  love.event.quit()
end

2 个答案:

答案 0 :(得分:1)

您可能想要创建Text对象,而不是使用love.graphics.print。然后,您可以在支票中查询其widthheight,并使用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

答案 1 :(得分:0)

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