We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1303027 commit c9bc38cCopy full SHA for c9bc38c
.gitignore
@@ -169,3 +169,6 @@ cython_debug/
169
cmake-build-*
170
.idea
171
/build-wasm/
172
+
173
+# Lock files
174
+*.lock
docs/_scripts/gen_environments_md.py
@@ -89,6 +89,10 @@ def shortened_repr(values):
89
To enable all 18 possible actions that can be performed on an Atari 2600, specify `full_action_space=True` during
90
initialization or by passing `full_action_space=True` to `gymnasium.make`."""
91
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
96
# Environment variants
97
env_specs = sorted(
98
[
0 commit comments