Difference between revisions of "love.event.poll (日本語)"

m
m (用例)
Line 14: Line 14:
 
for n, a, b, c, d, e, f in love.event.poll() do
 
for n, a, b, c, d, e, f in love.event.poll() do
 
if n == "quit" then
 
if n == "quit" then
-- Quit!
+
-- 終了処理!
 
end
 
end
 
end
 
end
Line 22: Line 22:
 
for e, a, b, c, d in love.event.poll() do
 
for e, a, b, c, d in love.event.poll() do
 
if e == "quit" then
 
if e == "quit" then
-- Quit!
+
-- 終了処理!
 
end
 
end
 
end
 
end
Line 30: Line 30:
 
for e, a, b, c in love.event.poll() do
 
for e, a, b, c in love.event.poll() do
 
if e == "q" then
 
if e == "q" then
-- Quit!
+
-- 終了処理!
 
end
 
end
 
end
 
end
 
</source>
 
</source>
 +
 
== 関連 ==
 
== 関連 ==
 
* [[parent::love.event (日本語)]]
 
* [[parent::love.event (日本語)]]

Revision as of 05:59, 29 September 2017

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

関数

概要

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

関連


そのほかの言語