The endless pointlessness of level progression
[koperkapel.git] / koperkapel / scenes / base.py
index 623eb42a977276e506449831be35956d83758d32..24a8c615fa06c43f97fe893f302d5aab3197f26b 100644 (file)
@@ -29,8 +29,10 @@ class Engine:
             ev.apply(self)
 
     def change_scene(self, scene):
+        print('here', self._scene)
         self._apply_events(self._scene.exit(self._world.proxy()))
         self._scene = scene
+        print('there', self._scene)
         self._apply_events(self._scene.enter(self._world.proxy()))
 
     def change_world(self, *args, **kw):