0

I want to use the keyboard_agent.py to play Breakout-v0. When I start the environment with:

python [...]/gym/examples/agents/keyboard_agent.py "Breakout-v0"

The game starts, and I can play the first round no problem. I can't however make it restart!

In the code we have:

 if key==0xff0d: human_wants_restart = True

Which I can't get to work. Google tells me that 0xff0d is FULLWIDTH HYPHEN-MINUS. What am I doing wrong, or how do I make this character?

Toke Faurby
  • 5,788
  • 9
  • 41
  • 62

1 Answers1

0

Restart is enter, and pause is space.

Toke Faurby
  • 5,788
  • 9
  • 41
  • 62