Forum Archive

What is the proper way to reset a scene?

mirko

So I am working upon this game and I am currently handling the end of the game.

The problem is that after resetting the scene, a new game indeed starts but I can still see the previous game animation playing in the background.

Even if I try to kill any animations from all the frames before individually nullifying them it still appears...

Is there some way a comprehensive scene programming guide?

ccc

You might want to look at MultiScene... http://omz-forums.appspot.com/pythonista/post/5293956959043584

The bottom line is that you can only call scene.run() once in your program. MultiScene is the best way around this constraint. Search the forum on MultiScene for details.

mirko

Thanks, I'll check that out.