love.visible (한국어)

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

윈도우가 사용자에 의해 최대/최소화 되었을 때 호출되는 콜백 함수입니다.

함수

형식

love.visible( v )

매개변수

boolean (한국어) v
윈도우 가시성.

리턴값

없음.

예제

function love.visible(v)
  if v then
    print("Window is not visible!")
  else
    print("Window is visible!")
  end
end

같이 보기


다른 언어