Character conroller

i want to edit default property of CharacterController because i want to make it cubic in shape , not sphare(which is default). or alternatively you can say that i want to make my own class which should have some property similar to CharacterController (i.e : CharacterController .SimpleMove) Please help me out…

:cry:

Write your own controller. You can't really change the collider type on Unity's character controller.

Unity's character controller is simple to use, but it can only really do the (fairly basic) things that it is designed to do. You should use a rigidbody instead!

1 Answer

1

Just replace the “Graphics” model with whatever you want. You could also add Component / Physics / BoxCollider…

The problem being the controller itself is a sort of collider and Unity doesn't like there being one object with two colliders...