Changed controls of Turtle Crossing, going forward is now done with the space key
This commit is contained in:
parent
6b6cd55c5b
commit
56098735ee
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ car_manager = CarManager()
|
|||
|
||||
car_manager.create_car()
|
||||
screen.listen()
|
||||
screen.onkey(fun=player.move, key='u') # Listens for 'w' key, and moves
|
||||
screen.onkey(fun=player.move, key='space') # Listens for 'space' key, and moves
|
||||
screen.onkey(fun=soft_exit, key='q')
|
||||
|
||||
game_is_on = True
|
||||
|
|
Loading…
Reference in a new issue