I am working with PyGame for the first time, and I haven't been able to find any way to handle event in a non-blocking way. For instance if I am playing a game with a character moving according to key pressing, I want the character to move continuously if I maintain the key pressed, and not having to release the key each time.
I am starting to think it is not possible with PyGame, am I right ?
Thanks.