about character controller

now this is my problem… I have a character but when I move forward my character faces left, when I go left my character faces back and so on… i think my problem is about the character controller but I dont know how to fix it, thanks in advance

*sorry for my poor english >.

the easiest fix is to re-export the character from the animation software, and make sure it is facing forward.

otherwise, it is possible to reset the transform with a script:

function Start(){
transform.forward = new Vector3.left;
}

those are the best ways I know to fix this…