문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top