입니다. 제발 도와주세요. :)유니티의 GameObject를 따라주십시오. Unity3D의 신참 Iam이
나는 두 개체가 있습니다 플레이어 및 적 내가 적으로 플레이어에 따라 필요합니다. 다음과 같이 시도했습니다.
var player : GameObject;
function Start()
{
var agent: NavMeshAgent = GetComponent.<NavMeshAgent>();
agent.SetDestination(player.transform.position);
}
function Update() {
}
아무 일도 발생하지 않았습니다.
Navmesh를 굽습니까? – Andy