How can I create realistic character movement, like in a FPS. So more like realistic head bob, I already have moving foward, back, left, and right, but sort of like Arma 2’s head movement. Thanks!
3 Answers
3Good question, but I have done this before. What you need to do is create an animation for the camera on your player. Just move around the rotation and stuff. The hard thing is trying to make it so that it loops well.
P.S. it will help if you have the animation window open as well as the inspector at the same time.
Technor
Can you help with that. I get what your saying but I can’t really script. If you can help me on the script that would be great!
Well, it's as simple as making the camera object a child of your character controller, and then having a short script that moves the camera in a figure-eight whenever the player is walking. When the player stops, you can have it smoothly bounce back to a default position.
– syclamoth