using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.AI; public class Chase : MonoBehaviour { public GameObject target; private NavMeshAgent agent; void Start() { agent = GetComponent<NavMeshAgent>(); } void Update() { // ターゲットの位置を目的地に設定する。 agent.destination = target.transform.position; } } ```![イメージ説明](491178f06e2329525b42bf1dcd350f90.png)unityでfpsゲームを作っているのですが、追尾する設定にしている敵がブロックをすり抜けてしまいます。解決策を教えてください 写真のゾンビが敵キャラです 上のコードが敵の移動コードです
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。