Page 1 of 1
[SOLVED] love.keyboard.setKeyRepeat(false) does'nt work!
Posted: Tue Mar 24, 2015 11:24 pm
by RaptrStudios
When i put
in love.load() or anywhere else, it does'nt stop the key from repeating!
How do i fix this?
Re: love.keyboard.setKeyRepeat(false) does'nt work!
Posted: Tue Mar 24, 2015 11:51 pm
by slime
Key repeat is disabled by default. Which functions are you calling (or what event callbacks are you using) that seem to make keys repeat? Key repeat only affects whether [wiki]love.keypressed[/wiki] is called multiple times if a key is held down.
Re: [SOLVED] love.keyboard.setKeyRepeat(false) does'nt work!
Posted: Sat Mar 28, 2015 4:17 am
by RaptrStudios
I was using it for love.keyboard.isDown(key) but it only works for love.keypressed()
Sorry