我的文字自动翻转

时间:2016-11-01 17:30:59

标签: c# unity3d unity5

所以这是我的代码

public Transform target;
void Update()
{
    if (target != null)
    {
        transform.LookAt(target);
    }
}

这是假设要查看任何状态下的玩家,但有些人如何得到我的文字网格 它如何看待统一:

https://gyazo.com/6ae1b42508bbd6b8bcb168ca2cdeca28

1 个答案:

答案 0 :(得分:1)

使用此代替lookAt

transform.rotation = Quaternion.LookRotation(transform.position - target.position);