I am using the .move function for my character controller and when I run into rigid bodies it does not really move the rigid body at all… how do I get it to work ? I tried adding a rigid body to the player also but it fixed nothing… I really like the .move function it works wellf besides this idk …
The character controller detects collisions and its movements are effected by them, but it does not react to forces or push rigidbodies.
You’d have to add force or velocity to rigidbodies that collide with your character controller through script. Alternatively, you can replace the character controller with a rigidbody and control your character with rigidbody functions.