Problems with First Person Controller and Character Model
Hi, I am new to Unity and am trying to set up my character. I use Morph3d right now for a basic model and need to get a first person controller that can look around with the mouse, move with the arrow keys, run and jump and crouch, and look down at his feet. Basically, add a first person camera to a model. How can I do this? Any help will be appreciated.
well, the unity FirstPersonCharacterController (in the Standart assets) does all of those things, except crouch. What you could start by doing is add a FirstPersonCharacterController to your scene and replace the capsule with your model. then, you might want to look at the tutorials provided by Unity to learn about $$anonymous$$ecanim, the animation system (if you are planning on including animations right away). You would also have to mod the script so that when you crouch, the camera is set lower, the capsule collider is switched with a smaller one and a crouch animation is played (again, you'll do this with mecanim)
Your answer
Follow this Question
Related Questions
how to move only one object ? 1 Answer
How should I move my character? 0 Answers
Help converting a character controller script to rigidbody 1 Answer
MoveTowards is curving for no reason 0 Answers
i'm using a code to make my cube walk with character controller but when i play the cube spins. 0 Answers