SFML community forums

Help => Window => Topic started by: Debonair on July 16, 2015, 07:18:51 pm

Title: [Solved] Making key pressed event fire only once
Post by: Debonair on July 16, 2015, 07:18:51 pm
Did some search about this, found a solution, which is to use this: window.setKeyRepeatEnabled(false);
But it does not seem to be working, the event is still firing continuously. Is this no longer functional? My SFML version is 2.2.
Title: AW: Making key pressed event fire only once
Post by: eXpl0it3r on July 16, 2015, 07:28:25 pm
Which OS?
Title: Re: Making key pressed event fire only once
Post by: kitteh-warrior on July 16, 2015, 07:57:51 pm
But it does not seem to be working, the event is still firing continuously.

If you are using sf::Keyboard::isKeyPressed(), it will always be continuous. window.setKeyRepeatEnabled() only effects events.
Title: Re: Making key pressed event fire only once
Post by: Debonair on July 17, 2015, 08:40:33 am
Which OS?

Windows 7.

If you are using sf::Keyboard::isKeyPressed(), it will always be continuous. window.setKeyRepeatEnabled() only effects events.

Oh I see. Yeah, I used that. Thanks for the help.