love.event.poll (日本語)
LÖVE 0.6.0 から使用可能 |
この関数は以前のバージョンでは非対応です。 |
イベントキューにあるメッセージに対してイテレーター (反復子) を返します。
Contents
関数
概要
i = love.event.poll( )
引数
なし。
返値
function i
- for ループで利用するイテレーター関数。
用例
LÖVE 0.10.0 のイベント確認
for n, a, b, c, d, e, f in love.event.poll() do
if n == "quit" then
-- 終了処理!
end
end
LÖVE 0.8.0 のイベント確認
for e, a, b, c, d in love.event.poll() do
if e == "quit" then
-- 終了処理!
end
end
LÖVE 0.7.2 のイベント確認
for e, a, b, c in love.event.poll() do
if e == "q" then
-- 終了処理!
end
end
関連