Skip to content

Commit

Permalink
Changed wall texture for maze env
Browse files Browse the repository at this point in the history
  • Loading branch information
maximecb committed Nov 1, 2018
1 parent 46d912e commit 81fcb21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark.py
Expand Up @@ -7,7 +7,7 @@

# Benchmark loading time
st = time.time()
env = gym.make('MiniWorld-Hallway-v0')
env = gym.make('MiniWorld-Maze-v0')
env.seed(0)
env.reset()
load_time = 1000 * (time.time() - st)
Expand Down
4 changes: 3 additions & 1 deletion gym_miniworld/envs/maze.py
Expand Up @@ -49,7 +49,9 @@ def _gen_world(self):
min_x=min_x,
max_x=max_x,
min_z=min_z,
max_z=max_z
max_z=max_z,
wall_tex='brick_wall',
#floor_tex='asphalt'
)
row.append(room)

Expand Down

0 comments on commit 81fcb21

Please sign in to comment.