Difference between revisions of "love.keyboard.getKeyRepeat (简体中文)"

(Created page with "Returns the delay and interval of key repeating. 返回持续按键的时间延迟和时间间隔 == Function == === Synopsis === <source lang="lua"> 看到了没 使用两个变...")
(No difference)

Revision as of 11:58, 6 April 2012

Returns the delay and interval of key repeating. 返回持续按键的时间延迟和时间间隔

Function

Synopsis

看到了没
使用两个变量去接收这个函数
          
delay, interval = love.keyboard.getKeyRepeat( )

Arguments

None.

Returns

number delay
The amount of time before repeating the key (in milliseconds)
number interval
The amount of time between repeats (in milliseconds)

See Also


Other Languages