I’m writing a simple game just for practice and I’m having issues with the frame rate for the backdrops.
Everything is drawn pixel by pixel, so like for example if i have
draw([['red','blue'],['blue','red']]) #Pseudo code the function has more stuff in it lol
i’ll get:
All was well till i was moving on to drawing backdrops, Im having issues with the fact it’s all done frame by frame, since my canvas is 200,200 so it needs to draw over 200 pixels every frame. IDLE crashes once I get to 100+
so is there a way I can move shapes in tkinter without it being frame by frame? Or alternatively is there a more efficient way for me to do this?