Update src/Map/Editor/EditorSprites.py

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Félix MARQUET
2025-04-07 22:50:14 +02:00
committed by GitHub
parent 7629663045
commit fb2b907a96

View File

@@ -9,7 +9,7 @@ class EditorPlatform(pygame.sprite.Sprite):
self.rect = pygame.Rect(x, y, width, height)
# Create surface for drawing
self.image = pygame.Surface((width, height))
self.image.fill((150, 75, 0)) # Green color for platforms
self.image.fill((150, 75, 0)) # Brown color for platforms
# Store original dimensions
self.width = width