Problem with Character Controllers

Hi, so im currently making my first 2d game in Unity, and after rigging the player model and so on I have run into the problem that when I try to use a Character Controller it doesnt actually work, meaning I cant move or jump or anything. Using the Unity Script (?) kind of works, but there is no collision at all. So could somebody help me?,Hi, so im currently making my first 2D game in Unity but, after rigging my Model and looking for a Character Controller I found that most of the Character Controllers dont actually work, meaning I cant walk/jump. The one from the Unity Side is working but there is no collision. So could somebody help me?

Hi there,

I guess you are trying to use a Physics3D component: Character Controller. In a 2D game, with 2D colliders, it won’t work. Probably you need to use Rigidbody2D instead, and generate movement via scripting.

Hope it helps.