Skip to content

Commit

Permalink
Make the colours a bit less scary
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic-DallOsto committed Nov 21, 2024
1 parent e199a06 commit 0cc83fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flygym/examples/game/game_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, sim, state, renderer, controls):
self.controls = controls

self.possible_states = ["CPG", "tripod", "single"]
self.state_floor_colors = {"CPG": (0, 0, 1, 1), "tripod": (0, 1, 0, 1), "single": (1, 0, 0, 1)}
self.state_floor_colors = {"CPG": (138/255, 206/255, 0, 1), "tripod": (0.3, 0.4, 1, 1), "single": (1, 0.2, 0.2, 1)}
self.start_time = 0
self.curr_time = 0
self.crossing_time = 0
Expand Down

0 comments on commit 0cc83fc

Please sign in to comment.