Created
August 29, 2024 12:37
-
-
Save Mike-Schvedov/b71316362691294e26bcdae6fc21696c to your computer and use it in GitHub Desktop.
MouseMovement - Survival Series Episode 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class MouseMovement : MonoBehaviour | |
{ | |
public float mouseSensitivity = 100f; | |
float xRotation = 0f; | |
float YRotation = 0f; | |
void Start() | |
{ | |
//Locking the cursor to the middle of the screen and making it invisible | |
Cursor.lockState = CursorLockMode.Locked; | |
} | |
void Update() | |
{ | |
float mouseX = Input.GetAxis("Mouse X") * mouseSensitivity * Time.deltaTime; | |
float mouseY = Input.GetAxis("Mouse Y") * mouseSensitivity * Time.deltaTime; | |
//control rotation around x axis (Look up and down) | |
xRotation -= mouseY; | |
//we clamp the rotation so we cant Over-rotate (like in real life) | |
xRotation = Mathf.Clamp(xRotation, -90f, 90f); | |
//control rotation around y axis (Look up and down) | |
YRotation += mouseX; | |
//applying both rotations | |
transform.localRotation = Quaternion.Euler(xRotation, YRotation, 0f); | |
} | |
} |
Nice
Assets\SCRIPTS\mouseSensitivity.cs(7,18): error CS0542: 'mouseSensitivity': member names cannot be the same as their enclosing type
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
peak content, and peak code