I’m making a maze game that’s based on arrays.
I have it so when the player(Value 1) reaches the end point (Value -5), my label changes from Level 1, to Level 2.
I’m having problems implementing the level feature. I was wondering if anyone can help me.
I believe I’m suppose to be using “configure”, but it’s not working out for me.
I have level as a global variable.
When the player reaches the end, it adjusts the level = 2, then recalls init(canvas)
Use a Tkinter stringVar to link with the label like this
Then to change the text in the label use
etc.