We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30013fc commit 408d082Copy full SHA for 408d082
1 file changed
robosuite/environments/manipulation/nut_assembly.py
@@ -163,6 +163,7 @@ def __init__(
163
initialization_noise="default",
164
table_full_size=(0.8, 0.8, 0.05),
165
table_friction=(1, 0.005, 0.0001),
166
+ table_offset=(0, 0, 0.82),
167
use_camera_obs=True,
168
use_object_obs=True,
169
reward_scale=1.0,
@@ -203,7 +204,7 @@ def __init__(
203
204
# settings for table top
205
self.table_full_size = table_full_size
206
self.table_friction = table_friction
- self.table_offset = np.array((0, 0, 0.82))
207
+ self.table_offset = table_offset
208
209
# reward configuration
210
self.reward_scale = reward_scale
0 commit comments