Difference between revisions of "love.mousefocus (Русский)"

(Created page with "{{newin|0.9.0|090|type=callback}} Вызывается при потере или получении фокуса окном. == Функция == === Вид === <source l...")
 
 
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=callback}}
 
{{newin|[[0.9.0]]|090|type=callback}}
Вызывается при потере или получении фокуса окном.
+
Вызывается при потере или получении фокуса мыши окном.
 
== Функция ==
 
== Функция ==
 
=== Вид ===
 
=== Вид ===

Latest revision as of 06:50, 31 July 2018

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

Вызывается при потере или получении фокуса мыши окном.

Функция

Вид

love.mousefocus( focus )

Аргументы

boolean (Русский) focus
Находится ли мышка внутри окна.

Возвращает

Ничего.

Пример

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

Смотрите также


Другие языки