↧
Answer by LyanApps
Are you moving the camera position as well? You can use Input.mousePosition to get the location of your mouse on each frame....
View ArticleAnswer by BDP1
Thank YOU! This code works perfectly!! function Update () { var mousePos = Input.mousePosition; mousePos.z = 32; //The distance from the camera to the player object var lookPos : Vector3 =...
View Article