So I have 2 Python files, one is a PyGame game (just a movement game) and the other is a Tkinter form.
The game has a variable called MOVESPEED
and I would like the Tkinter form to change it whenever needed.
The form currently has an entry box (where you will put the value of "MOVESPEED"
) and a button which will submit that value, once that button is pushed, I would like it so somehow change MOVESPEED
in the pygame
file. (This change does not need to be permanent)
Thank you for any help, I'll give you more info if need be.