Skip to content

Commit ba0849c

Browse files
bug fix textures
1 parent e3907c2 commit ba0849c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mujoco_robot_environments/environment/props.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def add_objects(
614614
else:
615615
colour = colours[i]
616616

617-
random.choice(textures)
617+
texture = random.choice(textures)
618618

619619
name = f"prop_{i}"
620620
labels = PropsLabels({

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mujoco_robot_environments"
7-
version = "0.0.8"
7+
version = "0.1.0"
88
description = "Simulation environments for basic manipulation tasks."
99
authors = [
1010
{ name = "Peter David Fagan", email = "[email protected]" }
@@ -13,7 +13,7 @@ readme = "README.md"
1313

1414
[tool.poetry]
1515
name = "mujoco_robot_environments"
16-
version = "0.0.8"
16+
version = "0.1.0"
1717
description = "Simulation environments for basic manipulation tasks."
1818
license = "Apache-2.0"
1919
authors = [

0 commit comments

Comments
 (0)