I have a character, and I want it to drag big boxes, using physics to make the boxes change angle or get stuck when colliding with other objects or environment. I want the boxes to appear heavy, so I dont want them to fall over or bounce around. Just to be dragged.
The character is a CharacterBody3D, the boxes are RigidBody3Ds, and the environment consist of staticbody3Ds.
My current best result is rolling the box across the floor, I have tried fiddling with friction of the box, weight, and applying force to a point in the middle of the bottom of the box. Most attempts simply launch the box into orbit.

Currently, because of the quirky control scheme, the code that checks if the box is being dragged and applies force is in the process function of the scene.

Any advice on how I should approach this?

5 days later

Use raycasting to detect the box, apply force to its center of mass, adjust mass, friction, and restitution for realistic behavior. Consider using KinematicBody3D or custom scripts for more control. Experiment with force application points and physics settings.