예제 #1
0
파일: NavAgent.cs 프로젝트: dqtoy/Assets
        private void FindPathDone_Callback(AStarAlgorithm aStar, bool found)
        {
            path = aStar.Path;

            AgentController.ThreadHelper.MainThreadInvoke(() => InitalizeMove(found));
            AgentController.FindPathDone_OnlyMainThread(this, found);
        }