Skip to content

Commit

Permalink
Merge pull request #283 from PixPanz/sander
Browse files Browse the repository at this point in the history
Adjusts population color.
  • Loading branch information
EricWM612 authored Feb 8, 2020
2 parents 206b85c + 263d8da commit dc08d44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion game/visualizer/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, parser, length=500, height=300, x=200, y=100, color=(255, 255
49: {
'points': population_list,
'title': 'Population',
'color': (0, 0, 255, 255),
'color': (56, 168, 255, 255),
},
50: {
'points': structure_list,
Expand Down
2 changes: 1 addition & 1 deletion game/visualizer/health_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, display_size, turn_info):
self.add(pop_label)
self.add(struct_label)

pop_bar = cocos.draw.Line(p_start, p_end, color=(0,0,255,255), stroke_width=15)
pop_bar = cocos.draw.Line(p_start, p_end, color=(56,168,255,255), stroke_width=15)
struct_bar = cocos.draw.Line(s_start, s_end, color=(255,0,0,255), stroke_width=15)


Expand Down

0 comments on commit dc08d44

Please sign in to comment.