So I can move my first person character with keyboard and mouse when the method is First Person but how do I do the same when using Direct mode? that is move my character and turn it with the mouse like a real third person character.
Fine but where do I place the third person camera? as a child of the character? in the usual place under _GameCameras? I tried both and there is no mouse control. I have chosen Movement Method: direct and what else, please???
It will attach itself to it's Target automatically - by default, this is the Player, so you don't have to move it anywhere.
You will have to fill in it's Inspector fields with the names of your mouse axes defined in Unity's Input Manager. Here are some settings that work well for me:
I then had to define mouse x / y inputs named "CursorHorizontal" and "CursorVertical" in my Input Manager, and then it works.
Comments
You will have to fill in it's Inspector fields with the names of your mouse axes defined in Unity's Input Manager. Here are some settings that work well for me:
I then had to define mouse x / y inputs named "CursorHorizontal" and "CursorVertical" in my Input Manager, and then it works.