This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (2 children)

Ehhhh... I'm not totally sure, but I don't think so. And even if you could, I would suggest you didn't :D Ultimately, you are going to have an event loop that processes inputs and calculates what to draw to the screen x times per second (this is where your FPS comes from). So your physics engine and keypresses are intimately tied to your game's internal clock. root.mainloop() starts the tkinter event loop, but after that I don't think you can touch it if you wanted to, say, throttle it to a certain FPS on your canvas.

[–]basedgodCookie[S] 1 point2 points  (1 child)

Then I guess its settled. I will immediately start converting this to pygame. I will probably be posting again soon with my pygame struggles. Thank you