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

m (translation update)
m
Line 4: Line 4:
 
=== 概要 ===
 
=== 概要 ===
 
<source lang="lua">
 
<source lang="lua">
e, a, b, c, d = love.event.wait( )
+
n, a, b, c, d, e, f, ... = love.event.wait( )
 
</source>
 
</source>
 
=== 引数 ===
 
=== 引数 ===

Revision as of 16:19, 9 June 2019

LÖVE 0.6.0 から使用可能
この関数は以前のバージョンでは非対応です。

love.event.poll() と似ていますが、イベントキューにイベントが入るまで阻止します。

関数

概要

n, a, b, c, d, e, f, ... = love.event.wait( )

引数

なし。

返値

Event e
イベントの種類。
Variant a
イベントの第一引数。
Variant b
イベントの第二引数。
Variant c
イベントの第三引数。
LÖVE 0.8.0 から利用可能
Variant d
イベントの第四引数。


LÖVE 0.10.0 から利用可能
Variant e
イベントの第五引数。
Variant f
イベントの第六引数。
Variant ...
必要ならば追加のイベント引数を続けて記述します。


関連


そのほかの言語