This commit is contained in:
2021-09-13 20:03:31 +02:00
parent d715ffb7ef
commit 1e3e7939b0
3 changed files with 47 additions and 12 deletions

View File

@@ -27,9 +27,12 @@ class Multiscene(Scene):
self.subscenes_prepared = True
def light_update(self):
for subscene in self.subscenes:
subscene.light_update()
for object_ in self.l_objects:
object_.update()
object_.blit()
object_.blit(True)
pygame.display.update()