0

我正在尝试编写一个非常简单的 3d 模型查看器,它允许用户单击并拖动 x 和 y 轴来旋转对象。我在包含的代码示例中面临的问题是,当我旋转某些东西时,比如说,围绕 y 轴,然后尝试围绕 x 轴旋转,我发现对象围绕对象的x 轴而不是从相机的角度看 x 轴。

我正在有效地尝试模拟沿 z 轴旋转的东西,尽管是通过两个动作。

public Transform obj;

private Vector3 screenPoint;
private Vector3 offset;

//public float minX = 270.0f;
//public float maxX = 360.0f;

//public float minY = -90.0f;
//public float maxY = 90.0f;

public float sensX = 100.0f;
public float sensY = 100.0f;

float rotationY = 0.0f;
float rotationX = 0.0f;

float posX = 0.0f;
float posY = 0.0f;

void Update() {

    if (Input.GetMouseButton(0)) {
        rotationX += Input.GetAxis("Mouse X") * sensX * Time.deltaTime;
        //rotationX = Mathf.Clamp(rotationX, minX, maxX);

        rotationY += Input.GetAxis("Mouse Y") * sensY * Time.deltaTime;
        //rotationY = Mathf.Clamp(rotationY, minY, maxY);

        Quaternion q = Quaternion.Euler(rotationY, -rotationX, 0);
        transform.rotation = q;
    }

    if (Input.GetMouseButton(1)) {
        posX += Input.GetAxis("Mouse X") * 25.0f * Time.deltaTime;
        posY += Input.GetAxis("Mouse Y") * 25.0f * Time.deltaTime;
        transform.position = new Vector3(posX, posY, 0);
    }
}
4

1 回答 1

1

如果你想绕 z 轴旋转,你可以试试这个transform.RotateAround功能。这将允许您指定一个点(作为 a Vector3)、一个旋转轴(再次作为 a Vector3)以及旋转的角度。此函数可以修改变换position的元素和rotation元素。

于 2015-11-25T21:05:11.467 回答