Cloud layers

This commit is contained in:
2021-04-06 11:52:57 +03:00
parent 00f5a97da1
commit 3ae1299459
3 changed files with 3 additions and 1 deletions
+3 -1
View File
@@ -164,8 +164,10 @@ class Drakora():
def render(self): def render(self):
self.screen.fill((61, 150, 223))
for cloudGroup in self.cloudGroups[:2]: cloudGroup.draw(self.screen)
self.background.draw(self.screen) self.background.draw(self.screen)
for cloudGroup in self.cloudGroups: cloudGroup.draw(self.screen) for cloudGroup in self.cloudGroups[2:]: cloudGroup.draw(self.screen)
self.enemies.draw(self.screen) self.enemies.draw(self.screen)
self.players.draw(self.screen) self.players.draw(self.screen)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.