When playing in game the player is invisible. The camera also is moving oddly and not following my camera script.
//camera script
#pragma strict
var target : Transform;
var distance = -10;
var lift = 3;
function Update () {
transform.LookAt(target);
}
here’s some links to photobucket, I have sreenshots to what im talking about.
The first link shows what happens immediately after i click play
The second link shows what happens when I move the character.
And this third link shows what is supposed to look like in game.