摄像机跟着鼠标左右移动而移动,上下移动而前进后退

private float cameraMoveSpeed = 1.5f;
void Update()
{
moveThisCamera();
}
void moveThisCamera()
{
if (Input.mousePosition.x <= 10)
{
float xNew = this.transform.position.x;
xNew -= cameraMoveSpeed * Time.deltaTime;
this.transform.position = new Vector3(xNew, this.transform.position.y, this.transform.position.z);
}
if (Input.mousePosition.x >= (Screen.width - 10))
{
float xNew = this.transform.position.x;
xNew += cameraMoveSpeed * Time.deltaTime;
this.transform.position = new Vector3(xNew, this.transform.position.y, this.transform.position.z);
}

if (Input.mousePosition.y <= 10)
{
float zNew = this.transform.position.z;
zNew -= cameraMoveSpeed * Time.deltaTime;
this.transform.position = new Vector3(this.transform.position.x, this.transform.position.y, zNew);
}
if (Input.mousePosition.y >= (Screen.height - 10))
{
float zNew = this.transform.position.z;
zNew += cameraMoveSpeed * Time.deltaTime;
this.transform.position = new Vector3(this.transform.position.x, this.transform.position.y, zNew);
}
}

原文地址:https://www.cnblogs.com/Study088/p/7298627.html