diff options
author | chai <215380520@qq.com> | 2024-04-16 17:44:27 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2024-04-16 17:44:27 +0800 |
commit | 42906830d441ffcca24fba35264644005048e2ca (patch) | |
tree | 3fd0f147791533567da022f5f98a5bdb9df5e6c4 /ActiveRagdoll/Assets/TABG/Scripts/Camera/CameraManager.cs | |
parent | 8862ba2376b05cbcc698f23253c987f88f1d4356 (diff) |
*misc
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 |