zaznaczenie celu
This commit is contained in:
parent
ae4f280246
commit
a287dc19c6
@ -24,5 +24,6 @@ COLORS = {
|
||||
'darkgray': (60, 60, 60),
|
||||
'yellow': (235, 235, 0),
|
||||
'lightgreen': (70, 238, 70),
|
||||
'red': (255, 0, 0)
|
||||
'red': (255, 0, 0),
|
||||
'lightblue': (135, 206, 250)
|
||||
}
|
||||
|
6
main.py
6
main.py
@ -41,6 +41,12 @@ class MainGameFrame:
|
||||
for x in range(self.warehouse_map.width):
|
||||
for y in range(self.warehouse_map.height):
|
||||
self.draw_field(x, y)
|
||||
self.draw_target(1, 1)
|
||||
|
||||
def draw_target(self, x, y):
|
||||
target_screen_position = (
|
||||
(x * TILE_WIDTH) + CIRCLE_CENTER_X, (y * TILE_HEIGHT) + CIRCLE_CENTER_Y)
|
||||
pygame.draw.circle(self.display, COLORS['lightblue'], target_screen_position, 6)
|
||||
|
||||
def draw_field(self, x, y):
|
||||
current_tile = self.warehouse_map.tiles[x][y]
|
||||
|
Loading…
Reference in New Issue
Block a user