Inspect the physics mass properties for the links (mass, Inertia tensor), and check if they are in the expected range. Inertia tensors that are too big will cause the “no gravity” feeling.
When composing the mobile base, ensure that there are no nested rigid bodies, as that is an illegal composition
Make sure there is only one Articulation Root, as the physics API does not allow nested articulations roots
Make sure there are no loops in the articulation by inspecting the joints, and the bodies they connect. A joint hierarchy is considered a loop when Body A can reach itself without reusing any joint in the articulation. For example, B1 → J1 → B2 → J2 → B3 → J3 → B1
Check the joint drives for Damping/Stiffness properties. on a Position drive, Stiffness must be greater than zero, and it’s recommended to have at least a minimal Damping, to avoid oscillations. For velocity drives, Stiffness must be zero, and Damping must be sufficient to drive the bodies the joint is connected to.
if you are unable to find a solution with those tips and are willing to share the asset, we can take a look to see what’s going on.