90 lines
2.9 KiB
C#
90 lines
2.9 KiB
C#
using UnityEngine;
|
|
|
|
public class ExtendedFlycam : MonoBehaviour
|
|
{
|
|
public float cameraSensitivity = 90f;
|
|
|
|
public float climbSpeed = 4f;
|
|
|
|
public float normalMoveSpeed = 10f;
|
|
|
|
public float slowMoveFactor = 0.25f;
|
|
|
|
public float fastMoveFactor = 3f;
|
|
|
|
private float rotationX;
|
|
|
|
private float rotationY;
|
|
|
|
private void Start()
|
|
{
|
|
Cursor.lockState = CursorLockMode.Locked;
|
|
Cursor.visible = false;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (Cursor.lockState != CursorLockMode.None)
|
|
{
|
|
rotationX += Input.GetAxis("Mouse X") * cameraSensitivity * Time.deltaTime;
|
|
rotationY += Input.GetAxis("Mouse Y") * cameraSensitivity * Time.deltaTime;
|
|
}
|
|
rotationY = Mathf.Clamp(rotationY, -90f, 90f);
|
|
Quaternion b = Quaternion.AngleAxis(rotationX, Vector3.up);
|
|
b *= Quaternion.AngleAxis(rotationY, Vector3.left);
|
|
base.transform.localRotation = Quaternion.Lerp(base.transform.localRotation, b, Time.deltaTime * 5f);
|
|
if (Input.GetKey(KeyCode.LeftShift) || Input.GetKey(KeyCode.RightShift))
|
|
{
|
|
base.transform.position += base.transform.forward * (normalMoveSpeed * fastMoveFactor) * Input.GetAxis("Vertical") * Time.deltaTime;
|
|
base.transform.position += base.transform.right * (normalMoveSpeed * fastMoveFactor) * Input.GetAxis("Horizontal") * Time.deltaTime;
|
|
if (Input.GetKey(KeyCode.Q))
|
|
{
|
|
base.transform.position += Vector3.up * climbSpeed * fastMoveFactor * Time.deltaTime;
|
|
}
|
|
if (Input.GetKey(KeyCode.E))
|
|
{
|
|
base.transform.position -= Vector3.up * climbSpeed * fastMoveFactor * Time.deltaTime;
|
|
}
|
|
}
|
|
else if (Input.GetKey(KeyCode.LeftControl) || Input.GetKey(KeyCode.RightControl))
|
|
{
|
|
base.transform.position += base.transform.forward * (normalMoveSpeed * slowMoveFactor) * Input.GetAxis("Vertical") * Time.deltaTime;
|
|
base.transform.position += base.transform.right * (normalMoveSpeed * slowMoveFactor) * Input.GetAxis("Horizontal") * Time.deltaTime;
|
|
if (Input.GetKey(KeyCode.Q))
|
|
{
|
|
base.transform.position += Vector3.up * climbSpeed * slowMoveFactor * Time.deltaTime;
|
|
}
|
|
if (Input.GetKey(KeyCode.E))
|
|
{
|
|
base.transform.position -= Vector3.up * climbSpeed * slowMoveFactor * Time.deltaTime;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
base.transform.position += base.transform.forward * normalMoveSpeed * Input.GetAxis("Vertical") * Time.deltaTime;
|
|
base.transform.position += base.transform.right * normalMoveSpeed * Input.GetAxis("Horizontal") * Time.deltaTime;
|
|
if (Input.GetKey(KeyCode.Q))
|
|
{
|
|
base.transform.position += Vector3.up * climbSpeed * Time.deltaTime;
|
|
}
|
|
if (Input.GetKey(KeyCode.E))
|
|
{
|
|
base.transform.position -= Vector3.up * climbSpeed * Time.deltaTime;
|
|
}
|
|
}
|
|
if (Input.GetKeyDown(KeyCode.End) || Input.GetKeyDown(KeyCode.Escape))
|
|
{
|
|
if (Cursor.lockState == CursorLockMode.None)
|
|
{
|
|
Cursor.lockState = CursorLockMode.Locked;
|
|
Cursor.visible = false;
|
|
}
|
|
else
|
|
{
|
|
Cursor.lockState = CursorLockMode.None;
|
|
Cursor.visible = true;
|
|
}
|
|
}
|
|
}
|
|
}
|