Recent content by pandorasbox

  1. P

    Drag and Drop in Pygame

    Thank you! That was very helpful!
  2. P

    Drag and Drop in Pygame

    How do I ensure it only copies once? Would just remove the MOUSEBUTTONDOWN? And what would I replace it with? Sorry I'm not very good at this. I think if I solve the first problem the second one will also be solved, it might be a similar problem. I'm not too sure how to describe it clearly, but...
  3. 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