Skip to content

Commit c9bc38c

Browse files
committed
Updated Breakout action space documentation
1 parent 1303027 commit c9bc38c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,6 @@ cython_debug/
169169
cmake-build-*
170170
.idea
171171
/build-wasm/
172+
173+
# Lock files
174+
*.lock

docs/_scripts/gen_environments_md.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ def shortened_repr(values):
8989
To enable all 18 possible actions that can be performed on an Atari 2600, specify `full_action_space=True` during
9090
initialization or by passing `full_action_space=True` to `gymnasium.make`."""
9191

92+
if env_name == "Breakout":
93+
action_description = action_description + """
94+
To make the ball appear at start of an episode or after loss of a life, action `FIRE` (Value 1) needs to be applied."""
95+
9296
# Environment variants
9397
env_specs = sorted(
9498
[

0 commit comments

Comments
 (0)