↧
Answer by coffiarts
Given that I correctly understand the problem - have you tried to use Screen.lockCursor ([http://docs.unity3d.com/Documentation/ScriptReference/Screen-lockCursor.html][1])? I suppose that should solve...
View ArticleAnswer by Waldy
If you want to get rid of the mouse i used this code (java script, Just attach it to your camera) function Update () { //hide the cursor (at the beginning of the game) Screen.showCursor = false; } I...
View Article