nếu mình muốn hiển thị ra 1 hình ảnh mà mình muốn bằng cách nhấn 1 nút bàn phím trong pygame thì làm như thế nào nhỉ, mình cứ ấn thì nó chỉ hiện trong 1 fps rồi tắt
def draw(img, x, y):
screen.blit(img,(x,y))
run = True
while run:
screen.blit(bg,(0,0))
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_q:
draw(img_1, pos_x, pos_y)
pygame.display.update()
clock.tick(60)
pygame.quit()