Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions source/extensions/omni.isaac.lab/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[package]

# Note: Semantic Versioning is used: https://semver.org/

version = "0.27.7"
version = "0.27.8"

# Description
title = "Isaac Lab framework for Robot Learning"
Expand Down
8 changes: 8 additions & 0 deletions source/extensions/omni.isaac.lab/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
---------

0.27.8 (2024-10-30)
~~~~~~~~~~~~~~~~~~~

Changed
^^^^^^^

* Cache PhysX view's DOF paths before looping when processing fixed articulation tendons.


0.27.7 (2024-10-28)
~~~~~~~~~~~~~~~~~~~
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1190,10 +1190,11 @@ def _process_fixed_tendons(self):
# parse fixed tendons properties if they exist
if self.num_fixed_tendons > 0:
stage = stage_utils.get_current_stage()
dof_paths = self.root_physx_view.dof_paths

# iterate over all joints to find tendons attached to them
for j in range(self.num_joints):
usd_joint_path = self.root_physx_view.dof_paths[0][j]
usd_joint_path = dof_paths[0][j]
# check whether joint has tendons - tendon name follows the joint name it is attached to
joint = UsdPhysics.Joint.Get(stage, usd_joint_path)
if joint.GetPrim().HasAPI(PhysxSchema.PhysxTendonAxisRootAPI):
Expand Down
Loading