Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a new environment for custom maze size specified by the user #15

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Conversation

Kuzat
Copy link
Contributor

@Kuzat Kuzat commented Oct 15, 2020

I needed some larger maze environments and added support for a custom maze size env. This way if there is need for a custom maze size it can specified when creating the environment.

Some examples how to use it.

import gym 
import gym_maze

env = gym.make("maze-random-custom-v0", maze_size=(150, 150))
import gym 
from gym_maze import envs

env = envs.MazeEnvRandomCustom(maze_size=(150,150), enable_render=False)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants