通常だとこうなる
コードの改良
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BossLookAt_2 : MonoBehaviour
{
public GameObject target;
private Vector3 targetPos;
void Update()
{
targetPos = target.transform.position;
// ターゲットの高さと自分の高さを合致させる(ポイント)
targetPos.y = transform.position.y;
transform.LookAt(targetPos);
}
}
これでOK