I have taken the time to look into joints a bit because previously I was using a breadcrumb agent idea to have a cart follow my assistant. Joints would make that a lot easier and well… they do.
Now I am running into the following problem: when my player moves and the bunny follows (see video) there is very heavy stuttering going on on the cart and it’s wheels while the bunny is going smooth. I have no idea what could be causing this as I’ve tried interpolating and such plain options I could find with google.
In general, joints are extremely finicky. You can try adding drag to the rigidbody at the end of the chain. This will dampen things. The more difficult solution is to make sure forces aren’t continuously acting against joint constraints. If they are, try to reduce or eliminate those forces. For example, maybe gravity is attempting to pull your cart hinge in a way that the hinge joint won’t allow.
Also, the manual has a bunch of recommendations to improve joint stability
Look like the camera following issue. Use cinemachine with smart and fixed update follow setting in camera brain. if you are using physics on player on which camera is following using LATE/Update update method. it will flicker . use fixed update for following player logic will give you more smooth moving rigidbodies.
cheers