Hey,
I’m totally lost on how to get physics working properly for a CharacterController. I was using a Rigidbody to do some stuff like jumping and moving around, but whenever I move up a ramp or anything, the force gets all wonky and the character actually never stops moving slightly.
I’ve since changed the Rigidbody to a CharacterController, but for some reason, my CharacterController isn’t reacting to anything. There is absolutely no collision, and it will not respond to gravity and sit on the surface of a plane like I want it to. It simply floats through any obstacles, also. I’ve tried attaching a kinematic Rigidbody to the CharacterController, but that doesn’t change anything unless I set it to not use gravity – in which case everything gets weird and my move keys push me in random directions.
Is there a way to make my CharacterController collide at all without using Rigidbody? And, is there a way to make it react to gravity (say, if I wanted to implement a jump function).
Thanks