Gripper Setup Guide
September 27, 2025 ยท View on GitHub
This guide walks you through the process of setting up a custom gripper for use with GraspDataGen. We'll use the Robotiq 2F-85 gripper as an example, but the same principles apply to other grippers.
Prerequisites
- Isaac Sim installed and configured
- Access to the Isaac Sim USD assets
- Basic familiarity with Isaac Sim interface
Step 1: Load and Save the Gripper
-
Load the gripper from Isaac Sim assets:
- Open Isaac Sim
- Load the gripper from:
omniverse://isaac-dev.ov.nvidia.com/Isaac/Robots/Robotiq/2F-85/Robotiq_2F_85_edit.usd
-
Save the gripper locally:
- Use
File -> Save Flattened As... - Save to
bots/robotiq_2f_85.usd - Important: Make sure to open the saved file before making any edits
- Use
Step 2: Ungroup the Robot
GraspDataGen does not handle nested robots yet, so we need to move the robot to the root USD path.
-
Select and ungroup the robot:
- Select the
Robotiq_2F_85 (defaultPrim)prim - Right-click and select "Ungroup Selected"
- Caution: Don't select the one under that - you need the IsaacRobotAPI on that level
- Select the
-
Set the default prim:
- Right-click on the
Robotiq_2F_85prim - Set it as the defaultPrim from the right-click menu
- Right-click on the
Step 3: Add Root Joint
A root joint is needed to hold the hand steady throughout the simulation.
-
Create a fixed joint:
- Select the
Robotiq_2F_85 (defaultPrim)prim - Go to
Create -> Physics -> Joint -> Fixed Joint - Name it
root_jointor another name that won't clash
- Select the
-
Configure the joint:
- In the Properties window, set
Physics | Joint | Body 1to/Robotiq_2F_85/base_link
- In the Properties window, set
-
Add
root_jointto theIsaacRobotAPI:- Select the
Robotiq_2F_85 (defaultPrim)prim - On the Property tab find
IsaacRobotAPI | robotJointsand click Add Target then select theroot_joint
- Select the
Step 4: Configure Finger Collision Detection (Optional)
Repeat these steps for both right_inner_finger and left_inner_finger.
Enable CCD (Continuous Collision Detection)
-
Select the finger:
- Select
Robotiq_2F_85/right_inner_finger
- Select
-
Enable CCD:
- Check the box for
Physics | Rigid Body | Enable CCD - Note: This won't actually be enabled during GPU simulation, but it's a parameter in
grasp_sim.pyfor CPU-based simulation
- Check the box for
Improve Collision Geometry
-
Make the finger non-instancable:
- Select
Robotiq_2F_85/right_inner_finger/visuals - Uncheck the box for "Instancable" directly under the prim path in the Property tab
- Select
-
Change collision approximation:
- Find the
Physics | Colliderattribute on the/Robotiq_2F_85/right_inner_finger/visuals/Defeatured_2F_85_PAD_OPEN_fingertipsstep_01/Defeatured_2F_85_PAD_OPEN_fingertipsstepprim - Change the approximation from "Convex Hull" to "Convex Decomposition"
- Find the
-
Enable shrink wrap:
- Check the
Physics | Collider | Advanced | Shrink Wrapcheckbox
- Check the
Visualize Collision Objects
You can visualize the collision objects as they will be simulated:
- Click on the Eye icon at the top of the viewport
- Check:
Show By Type -> Physics -> Colliders -> Selected
Step 5: Repeat for Other Fingers
Apply the same configuration steps to the left_inner_finger.
Step 6: Save and Configure
-
Save the USD file after making all changes
-
Add gripper configuration:
- Add your new gripper configuration to
GRIPPER_CONFIGURATIONSinscripts/graspgen/gripper_configurations.py
Here is an example of what the configuration should look like. At minimum, you need to set
gripper_file,finger_colliders, andbase_frame. Note that we setbiteto half the size of the pad to show you can customize all the other configuration parameters:'robotiq_2f_85': { 'gripper_file': 'bots/robotiq_2f_85.usd', 'finger_colliders': ['right_inner_finger', 'left_inner_finger'], 'base_frame': 'base_link', 'bite': 0.0185, # half of 37mm }, - Add your new gripper configuration to
-
Test the configuration:
- Your gripper should now be ready for use with the Gripper Definition tool (
create_gripper_lab.py)
- Your gripper should now be ready for use with the Gripper Definition tool (
Important Notes
The Robotiq 2F-85 gripper from the Isaac Sim assets already has several important parameters configured that we didn't need to change:
- Mass values are set on the links to real-world masses
- Force and velocity limits are set on the driving joint (
finger_joint) - Mimic joints are properly configured for the remaining joints
These parameters ensure the gripper simulates correctly in the physics engine.