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...
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:
...