Difference between revisions of "love.keyboard.isDown"

m (Extend example.)
(Examples)
(5 intermediate revisions by 3 users not shown)
Line 13: Line 13:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
anyDown = love.keyboard.isDown( key1, key2, key3, ... )
+
anyDown = love.keyboard.isDown( key, ... )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|KeyConstant|keyN|A key to check.}}
+
{{param|KeyConstant|key|A key to check.}}
 +
{{param|KeyConstant|...|Additional keys to check.}}
 
=== Returns ===
 
=== Returns ===
 
{{param|boolean|anyDown|True if any supplied key is down, false if not.}}
 
{{param|boolean|anyDown|True if any supplied key is down, false if not.}}
Line 26: Line 27:
 
     -- We will increase the variable by 1 for every second the key is held down.
 
     -- We will increase the variable by 1 for every second the key is held down.
 
     if love.keyboard.isDown("up") then
 
     if love.keyboard.isDown("up") then
         val = val + dt;
+
         val = val + dt
         print(val);
+
         print(val)
 
     end
 
     end
  
 
     -- We will decrease the variable by 1/s if any of the wasd keys is pressed.  
 
     -- We will decrease the variable by 1/s if any of the wasd keys is pressed.  
 
     if love.keyboard.isDown('w', 'a', 's', 'd') then
 
     if love.keyboard.isDown('w', 'a', 's', 'd') then
         val = val - dt;
+
         val = val - dt
         print(val);
+
         print(val)
 
     end
 
     end
 
end
 
end
Line 40: Line 41:
 
* [[parent::love.keyboard]]
 
* [[parent::love.keyboard]]
 
* [[love.keypressed]]  
 
* [[love.keypressed]]  
* [[love.keyreleased]]  
+
* [[love.keyreleased]]
 +
* [[love.keyboard.isScancodeDown]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Checks whether a certain key is down.}}
 
{{#set:Description=Checks whether a certain key is down.}}

Revision as of 23:51, 14 February 2019

Checks whether a certain key is down. Not to be confused with love.keypressed or love.keyreleased.

Function

Synopsis

down = love.keyboard.isDown( key )

Arguments

KeyConstant key
The key to check.

Returns

boolean down
True if the key is down, false if not.

Function

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

Synopsis

anyDown = love.keyboard.isDown( key, ... )

Arguments

KeyConstant key
A key to check.
KeyConstant ...
Additional keys to check.

Returns

boolean anyDown
True if any supplied key is down, false if not.

Examples

Increase a value while a key is held down

local val = 0;
function love.update(dt)
    -- We will increase the variable by 1 for every second the key is held down.
    if love.keyboard.isDown("up") then
        val = val + dt
        print(val)
    end

    -- We will decrease the variable by 1/s if any of the wasd keys is pressed. 
    if love.keyboard.isDown('w', 'a', 's', 'd') then
        val = val - dt
        print(val)
    end
end

See Also


Other Languages