27 lines
754 B
C#
27 lines
754 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class MouseComponent : MonoBehaviour
|
|
{
|
|
public float mouseSensitivity = 100f;
|
|
public Transform playerBody;
|
|
float xRotation = 0f;
|
|
|
|
void Start()
|
|
{
|
|
Cursor.lockState = CursorLockMode.Locked;
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
float mouseX = Input.GetAxis("Mouse X") * mouseSensitivity * Time.deltaTime;
|
|
float mouseY = Input.GetAxis("Mouse Y") * mouseSensitivity * Time.deltaTime;
|
|
xRotation -= mouseY;
|
|
xRotation = Mathf.Clamp(xRotation, -90, 90f);
|
|
transform.localRotation = Quaternion.Euler(xRotation, 0f, 0f);
|
|
playerBody.Rotate(Vector3.up * mouseX);
|
|
}
|
|
}
|