1

我正在构建一个自上而下的游戏,我的主要玩家向鼠标指针旋转,但由于某种原因,玩家从他的右边(他的 x 轴)看指针,我需要他从他的 Y 看。

我尝试了多种方法,但仍然与尝试将向量从vector3更改为vector2相同,但它会使我不需要它做的事情,我什至尝试使用四元数。

void controlScheme()
{
    if (Input.GetKey(KeyCode.W))
    {
        transform.Translate(Vector3.up * PlayerSpeed * Time.deltaTime,Space.World);
    }
    if (Input.GetKey(KeyCode.S))
    {
        transform.Translate(Vector3.down * PlayerSpeed * Time.deltaTime,Space.World);
    }
    if (Input.GetKey(KeyCode.A))
    {
        transform.Translate(Vector3.left * PlayerSpeed * Time.deltaTime,Space.World);
    }
    if (Input.GetKey(KeyCode.D))
    {
        transform.Translate(Vector3.right * PlayerSpeed * Time.deltaTime,Space.World);
    }

    transform.up = dir;*/

    var dir = Input.mousePosition - Camera.main.WorldToScreenPoint(transform.position);
    var angle = Mathf.Atan2(dir.y, dir.x) * Mathf.Rad2Deg;
    transform.rotation = Quaternion.AngleAxis(angle, Vector3.forward);

唯一奇怪的是没有代码告诉引擎让玩家从玩家的右侧向鼠标旋转。

4

2 回答 2

0

一种解决方案是找到一个您希望角色“从”旋转的向量——精灵“前”的方向——以及它应该旋转“到”的位置——从角色到鼠标位置的方向——和然后用于transform.rotation.SetFromToRotation设置进行更改所需的任何旋转:

Vector3 desiredDirection = Camera.main.WorldToScreenPoint(transform.position) - Input.mousePosition;
Vector3 startDirection = Vector3.up; // the vector direction of the character's
                                     // "front" before any rotation is applied.

transform.rotation.SetFromToRotation(startDirection, desiredDirection);
于 2019-03-25T16:48:56.337 回答
0
 Vector2 diff = Camera.main.ScreenToWorldPoint(Input.mousePosition) - this.transform.position;


    float rot_z = Mathf.Atan2(diff.y, diff.x) * Mathf.Rad2Deg;
    this.transform.rotation = Quaternion.Euler(0f, 0f, rot_z -90);

我找到了一种使用代码的方法,尽管角色仍然从他的右侧看鼠标指针,我将他旋转了 -90 度,所以它可以再次看起来更好,我的问题有点愚蠢,但仍然没有正确的方法来解决这个。感谢你们。:D

于 2019-03-28T00:00:24.753 回答