I have an event loop like
while True:
for event in pygame.event.get():
My code only seems to run while my mouse is moving and for a short while after it stops.
I want it to not freeze whatever happens but to also have event
available to use in my code further down. Is there a way to do this?