Assets.Characters.AiScripts.States.FollowThisState.FollowThisState C# (CSharp) 메소드

FollowThisState() 공개 메소드

public FollowThisState ( NavMeshAgent agent, GameObject itemToFollow ) : UnityEngine
agent UnityEngine.NavMeshAgent
itemToFollow UnityEngine.GameObject
리턴 UnityEngine
        public FollowThisState(NavMeshAgent agent, GameObject itemToFollow)
        {
            _target = itemToFollow;
            _agent = agent;
        }