Recently I\'ve been working with a simple and straightforward RPG in python with pygame, but I\'m having some problems delaying specific events. Running the
If you know how much time you need, you can simply add:
from time import sleep ... sleep(0.1)
This will add a 100 milliseconds delay