love.mousefocus (한국어)

Available since LÖVE 0.9.0
This callback is not supported in earlier versions.

윈도우가 포커스를 받거나 잃었을 때 호출되는 콜백 함수입니다.

함수

형식

love.mousefocus( f )

매개변수

boolean (한국어) f
윈도우 포커스

리턴값

없음.

예제

function love.load()
  text = "Mouse is in the window!"
end

function love.draw()
  love.graphics.print(text,0,0)
end

function love.mousefocus(f)
  if not f then
    text = "Mouse is not in the window!"
    print("LOST MOUSE FOCUS")
  else
    text = "Mouse is in the window!"
    print("GAINED MOUSE FOCUS")
  end
end

같이 보기


다른 언어