所以这是我的代码
public Transform target;
void Update()
{
if (target != null)
{
transform.LookAt(target);
}
}
这是假设要查看任何状态下的玩家,但有些人如何得到我的文字网格 它如何看待统一:
答案 0 :(得分:1)
使用此代替lookAt
transform.rotation = Quaternion.LookRotation(transform.position - target.position);