【发布时间】:2015-08-12 06:19:09
【问题描述】:
我用相机创造第三人称。相机将与鼠标移动同步移动。我为相机移动创建脚本,它的工作但是当速度很高时,一切都开始摇晃。
如何使相机平滑移动?
Vector3 rotation = new Vector3();
rotation = this.transform.rotation.eulerAngles;
float ver = Input.mousePosition.y - mouse_position.y;
difference_y = difference_y ?? ver;
rotation.y += (float)(((Input.mousePosition.x - mouse_position.x) / one_degree_per_pixel_hor));
rotation.x += (float)((-(Input.mousePosition.y - mouse_position.y) / one_degree_per_pixel_ver));
rotation.z = 0;
if (difference_y != 0) {
// Forward tilt
if (difference_y < 0) {
if (rotation.x > max_slope_forward && rotation.x < max_slope_back) rotation.x = max_slope_forward;
}
// Back tilt
else {
if (rotation.x < max_slope_back && rotation.x > max_slope_forward && rotation.x != max_slope_forward) rotation.x = max_slope_back;
}
}
difference_y = ver;
this.transform.Rotate(new Vector3(-Input.GetAxis("Mouse Y"), Input.GetAxis("Mouse X"), 0),Time.deltaTime*SpeedRotation);
rotation = this.transform.rotation.eulerAngles;
rotation.z = 0;
this.transform.rotation = Quaternion.Euler(rotation);
mouse_position = Input.mousePosition;
【问题讨论】:
-
另外,请考虑在标签中添加代码的语言(如 C# 或 Javascript),它可以为您的代码添加颜色并使其更具可读性。
标签: unity3d camera rotation unityscript