love.event.poll (日本語)

イベントキューにあるメッセージに対してイテレーターを返します。

関数

概要

i = love.event.poll( )

引数

なし。

返値

function i
for ループで利用できるイテレーター関数。

用例

LÖVE 0.8.0 におけるイベントの確認。

for e, a, b, c, d in love.event.poll() do
	if e == "quit" then
		-- Quit!
	end	
end

LÖVE 0.7.2 におけるイベントの確認。

for e, a, b, c in love.event.poll() do
	if e == "q" then
		-- Quit!
	end	
end

関連


そのほかの言語