Search results

  1. P

    Drag and Drop in Pygame

    Hi! I am trying to figure out how to click and drag and drop any item on pygame. I was testing with a simple circle and this is what I have: from pygame import * screen=display.set_mode((600,400)) running=True while running:     for evnt in event.get():         if evnt.type == QUIT:            ...
Back
Top