[Question] An error [omni.physicsschema.plugin] occured when importing custom usd file with ORBIT #1094
Replies: 2 comments
-
Wondering if you tested in Isaac Sim with GPU simulation as well. There is a difference in CPU and GPU simulation with Omniverse Physics so it might be the issue only comes when you do GPU simulation. On the error message itself, I think this is happening because you have cascaded rigid prims (as the message says). It is hard for me to assess without seeing the USD asset itself. But, Omniverse Physics expects that there is no nesting in the stack (i.e. articulation root prim under articulation root prim, rigid body prim under another rigid body prim). |
Beta Was this translation helpful? Give feedback.
-
def main():
# -- Valve
# table_usd_path = f"/home/vision/Downloads/valve/round/round_valve_1.usd"
table_usd_path = f"/home/vision/Downloads/valves/round_valve/round_valve.usd"
prim_utils.create_prim("/World/envs/env_0/Valve", usd_path=table_usd_path, position=(0.8, 0.0, 0.0), scale = (1.1, 1.1, 1.1)) |
Beta Was this translation helpful? Give feedback.
-
Question
An error occurred while importing the custom usd file for reinforcement learning with Orbit. Since the error code was Isaac-sim Error code, I thought it was a problem related to Isaac-sim, but I confirmed that it was being imported commonly in Isaac-sim, and the joint was also working well.
If you look at the error code below, it says, "(/World/envs/env_0/Valve/body/body) missing xformstack reset when child of rigid body (/World/envs/env_0/Valve) in hierarchy." I suspected the problem occurred between prim path "(/World/envs/env_0/Valve)" and the custom USD file in the spawning process.
Do you know if there is a solution?
Python File
Error Code
Beta Was this translation helpful? Give feedback.
All reactions