Closed chisarie closed 10 months ago
Kinematic object does not support velocity. If you do not require the kinematic actor to push other dynamic actors, you just need to set its pose every step. If you do need interactions between a moving kinematic actors and dynamic actors, unfortunately this interface was not properly exposed in SAPIEN 2. SAPIEN 3 (currently in alpha) does expose this functionality set_kinematic_target
. The function is used in the same way as set_pose
but the kinematic object will be moved instead of teleported to the target location.
Thank you very much for your response. I indeed need the interaction between the kinematic actor and a dynamic one, so I will try to make it work with sapien 3. By the way, what is the expected timeline for the release of version 3?
Thank you again!
It is a bit hard to estimate an exact release date. However, we do not plan to have major API changes at this point so you could even start using the nightly builds if you need to make something right now. And I can provide support if something is not functioning as you expect. The major thing currently missing is full documentation, which will be worked on and posted to https://sapien-sim.github.io/docs/
Thank you! I'll close this issue.
System:
Describe the bug I create a kinematic actor and set its linear velocity using the function
set_velocity
, but the block is not movingTo Reproduce
Expected behavior I expect the block to move at constant velocity