Hi! I’m wondering if there is a possibility to load in plugins in our robot for custom sensors/controllers/etc. In some of the URDF examples I found a references to a gazebo plugin which hinted at the possibility to use native C++:
We don’t support direct C/C++ access in Isaac Gym, but you can certainly use PyBind to call into C++ code from Python to do whatever you want on the control side. You won’t have any additional sensor access that way however - all physics state tensor reading still needs to go through the Python APIs, and you’d have to pass data from there to C++.
We’re looking at providing some example code for this kind of integration in the future, but we don’t have anything currently available.