Skip to content

Commit 277e1c2

Browse files
[Newton] Newton beta 1.1 (#3508)
Last batch of changes for Newton Beta 1.1
1 parent 6663956 commit 277e1c2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

source/isaaclab/isaaclab/assets/articulation/articulation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,8 +1380,8 @@ def _initialize_impl(self):
13801380
generated_pose[:, :2] += wp.to_torch(self._root_newton_view.get_root_transforms(NewtonManager.get_model()))[
13811381
:, :2
13821382
]
1383-
self._root_newton_view.set_root_transforms(NewtonManager.get_state_0(), generated_pose, mask=self._ALL_INDICES)
1384-
self._root_newton_view.set_root_transforms(NewtonManager.get_model(), generated_pose, mask=self._ALL_INDICES)
1383+
self._root_newton_view.set_root_transforms(NewtonManager.get_state_0(), generated_pose)
1384+
self._root_newton_view.set_root_transforms(NewtonManager.get_model(), generated_pose)
13851385

13861386
def _create_buffers(self):
13871387
# constants

source/isaaclab/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"usd-core==25.05.0",
5151
"mujoco>=3.3.6.dev803126923",
5252
"mujoco-warp @ git+https://github.com/google-deepmind/mujoco_warp.git@64bb938f87b6aaf840753ef9ddc198db655020c0",
53-
"newton @ git+https://github.com/newton-physics/newton.git@beta-1-0",
53+
"newton @ git+https://github.com/newton-physics/newton.git@beta-1-1",
5454
"imgui-bundle==1.92.0",
5555
]
5656

source/isaaclab_assets/isaaclab_assets/robots/allegro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
spawn=sim_utils.UsdFileCfg(
3030
usd_path=f"{ISAAC_NUCLEUS_DIR}/Robots/WonikRobotics/AllegroHand/allegro_hand_instanceable.usd",
3131
articulation_props=sim_utils.ArticulationRootPropertiesCfg(
32-
enabled_self_collisions=False,
32+
enabled_self_collisions=True,
3333
),
3434
),
3535
init_state=ArticulationCfg.InitialStateCfg(

0 commit comments

Comments
 (0)