diff options
Diffstat (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Camera/CameraManager.cs')
-rw-r--r-- | ActiveRagdoll/Assets/TABG/Scripts/Camera/CameraManager.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ActiveRagdoll/Assets/TABG/Scripts/Camera/CameraManager.cs b/ActiveRagdoll/Assets/TABG/Scripts/Camera/CameraManager.cs new file mode 100644 index 0000000..46dc7fd --- /dev/null +++ b/ActiveRagdoll/Assets/TABG/Scripts/Camera/CameraManager.cs @@ -0,0 +1,20 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace Rigging +{ + + public class CameraManager : MonoBehaviour + { + // Start is called before the first frame update + void Start() + { + Cursor.lockState = CursorLockMode.Locked; + Cursor.visible = false; + } + + } + + +}
\ No newline at end of file |