Difference between revisions of "love.keyboard.setKeyRepeat"

m
m (Examples: Fixed arguments of love.keypressed (scancode parameter added))
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Enables or disables repeat keypress events.
+
Enables or disables key repeat for [[love.keypressed]]. It is disabled by default.
 
== Function ==
 
== Function ==
 
{{newin|[[0.9.0]]|090|type=variant}}
 
{{newin|[[0.9.0]]|090|type=variant}}
Line 11: Line 11:
 
Nothing.
 
Nothing.
 
=== Notes ===
 
=== Notes ===
The interval between repeats depends on the user's system settings.
+
The interval between repeats depends on the user's system settings. This function doesn't affect whether [[love.textinput]] is called multiple times while a key is held down.
  
 
== Function ==
 
== Function ==
Line 27: Line 27:
  
 
== Examples ==
 
== Examples ==
{{newin|[[0.9.0]]|090|type=example}}
 
 
Hold left or right to change the position.
 
Hold left or right to change the position.
 
<source lang="lua">
 
<source lang="lua">
Line 35: Line 34:
 
end
 
end
  
function love.keypressed(key, isrepeat)
+
function love.keypressed(key, scancode, isrepeat)
 
if key == "right" then
 
if key == "right" then
 
x = (x + 80) % love.graphics.getWidth()
 
x = (x + 80) % love.graphics.getWidth()
Line 44: Line 43:
  
 
function love.draw()
 
function love.draw()
love.graphics.circle("fill", x, 100)
+
love.graphics.circle("fill", x, 100, 50, 50)
end
 
</source>
 
 
 
----
 
{{oldin|[[0.9.0]]|090|type=example}}
 
Hold left or right to continue moving.
 
Please note that a generally better way to move an object would be to put code in [[love.update]]() which uses [[love.keyboard.isDown]]. This is just an example.
 
<source lang="lua">
 
function love.load()
 
x = 400
 
love.keyboard.setKeyRepeat(0.01, 0.2)
 
end
 
 
 
function love.keypressed(key)
 
if key == "left" then
 
x = x - 20
 
elseif key == "right" then
 
x = x + 20
 
end
 
end
 
 
 
function love.draw()
 
love.graphics.circle("fill", x, 300, 30, 30)
 
 
end
 
end
 
</source>
 
</source>
Line 76: Line 52:
 
* [[love.keypressed]]
 
* [[love.keypressed]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Enables or disables repeat keypress events.}}
+
{{#set:Description=Enables or disables key repeat for [[love.keypressed]].}}
 
{{#set:Since=000}}
 
{{#set:Since=000}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.keyboard.setKeyRepeat}}
 
{{i18n|love.keyboard.setKeyRepeat}}

Latest revision as of 09:46, 16 April 2020

Enables or disables key repeat for love.keypressed. It is disabled by default.

Function

Available since LÖVE 0.9.0
This variant is not supported in earlier versions.

Synopsis

love.keyboard.setKeyRepeat( enable )

Arguments

boolean enable
Whether repeat keypress events should be enabled when a key is held down.

Returns

Nothing.

Notes

The interval between repeats depends on the user's system settings. This function doesn't affect whether love.textinput is called multiple times while a key is held down.

Function

Removed in LÖVE 0.9.0
This variant is not supported in that and later versions.

Enables key repeating and sets the delay and interval.

Synopsis

love.keyboard.setKeyRepeat( delay, interval )

Arguments

number delay
The amount of time before repeating the key (in seconds). 0 disables key repeat.
number interval
The amount of time between repeats (in seconds)

Returns

Nothing.

Examples

Hold left or right to change the position.

function love.load()
	love.keyboard.setKeyRepeat(true)
	x = 50
end

function love.keypressed(key, scancode, isrepeat)
	if key == "right" then
		x = (x + 80) % love.graphics.getWidth()
	elseif key == "left" then
		x = (x - 80) % love.graphics.getWidth()
	end
end

function love.draw()
	love.graphics.circle("fill", x, 100, 50, 50)
end

See Also


Other Languages