Question

Is there any way to disable key pressing events when they are repeating?

I'm developing a game and when I press a key, the players goes into running mode and goes back to standing mode when the key is released. The problem is that with repeating keyPressEvent() events, there are automatically keyReleaseEvent() events, making the player immediately going back to standing mode after going into running mode, thus resetting the step (that I use for the running animation).

What should I do to cancel this?

Was it helpful?

Solution

Since you tagged your question with Qt, I assume your are using Qt key events - in that case, use QKeyEvent::isAutoRepeat() to check if the key event is a "real" key event or an autorepeat event.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top