I just started watching your tutorial(EteeskiTutorial) because the tutorial is very clear and i am looking forward to the next tutorial.
My PlayerCapsule is not moving forward,backward or sideway and it is not rotating either.
Any help would be appreciate.Thanks.
PlayerMovementScript :
var walkAcceleration : float = 5;
var cameraObject : GameObject;
function Update ()
{
transform.rotation = Quaternion.Euler(0, cameraObject.GetComponent(MouseLookScript).currentYRotation, 0);
rigidbody.AddRelativeForce(Input.GetAxis("Horizontal") * walkAcceleration, 0, Input.GetAxis("Vertical") * walkAcceleration);
}