Unity初心者です
Unity内のナビゲーション機能を使って移動させようと思っています。
しかし、動きはするのですが移動がかなり遅くて0.1動くのに1秒ぐらいかかります
どうすればもっと早く移動することができるでしょうか?
コード```C#を利用しています
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AI;
public class PlayerNavMesh : MonoBehaviour{
[SerializeField] private Transform movePositionTransform; private NavMeshAgent navMeshAgent; private void Awake() { navMeshAgent = GetComponent<NavMeshAgent>(); }
private void update() {
navMeshAgent.destination = movePositionTransform.position;
}
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。