Skip to content
Snippets Groups Projects
Commit d3926dce authored by Fabian Heinrich's avatar Fabian Heinrich
Browse files

Renamed Color again

parent 2668200b
No related branches found
No related tags found
1 merge request!2Resolve "2D movement continuous"
Pipeline #41289 passed
...@@ -116,7 +116,7 @@ class PyGameGUI: ...@@ -116,7 +116,7 @@ class PyGameGUI:
for x in range(0, self.window_width, block_size): for x in range(0, self.window_width, block_size):
for y in range(0, self.window_height, block_size): for y in range(0, self.window_height, block_size):
rect = pygame.Rect(x, y, block_size, block_size) rect = pygame.Rect(x, y, block_size, block_size)
pygame.draw.rect(self.screen, BACKGROUND_LINES, rect, 1) pygame.draw.rect(self.screen, BACKGROUND_LINES_COLOR, rect, 1)
def draw_players(self, state): def draw_players(self, state):
"""Visualizes the players as circles with a triangle for the facing diretion. """Visualizes the players as circles with a triangle for the facing diretion.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment