Replies: 1 comment
-
Given that your script uses modules and classes specific to Isaac Lab, the most effective place to get support is on the Isaac Lab GitHub repository. The developers and community members there are more familiar with the framework's internal workings and can provide specialized assistance for issues like this. You can find the discussion forums at isaac-sim/IsaacLab/discussions. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everybody,
I want to create a SurfaceGripper completely in code.
This means I don’t want to load a USD-File which already has all necessary functions included.
So, I need to create the joint myself. This is the code I used to create it:
And this is the code to create the gripper afterwards:
I was already able to find the command to apply the AttachmendPointAPI:
robot_schema.ApplyAttachmentPointAPI(joint_prim)
When I check the “Property” of the joint in the simulation, I can see that everything should be setup correctly:
However, I get the following Warning:
2025-08-22T14:09:37Z [24,986ms] [Warning] [isaacsim.robot.surface_gripper.plugin] Gripper /World/envs/env_0/robot/surface_gripper_ref/SurfaceGripper has no joint at attachment point /World/envs/env_0/robot/suction_cups_joints/joint0
And I cannot pick up work pieces.
Additionally, I would like to know how te set the “Clearance Offset” and the “Forward Axis” with a command.
Also, I run the script in IsaacLab and not in IsaacSim. However, the warning comes from IsaacSim. That’s why I post it here. And I checked the source code of the IsaacLab-API. In the end it creats a GripperView and calls it during the execution.
How can I fix my code to be able to grasp something?
Beta Was this translation helpful? Give feedback.
All reactions